Приветствую вас! Этот репозиторий представляет собой простой аудиоплеер на основе Next.js, использующий event emitter для управления воспроизведением аудио. Ниже приведены инструкции по клонированию, установке зависимостей и запуску проекта.
Чтобы склонировать репозиторий, выполните следующую команду в вашем терминале:
git clone https://github.com/uptron-io/next-js-event-emitter-audio-player.git
Перейдите в корневую папку проекта и выполните команду установки зависимостей:
npm install
Для запуска проекта используйте команду:
npm run dev
После этого вы сможете открыть ваш браузер и перейти по адресу http://localhost:3000 для просмотра аудиоплеера.
Закиньте Ваш аудио файл в папку public. Откройте файл /src/app/page.tsx и измените значение атрибута src на название вашего аудио файла.
<AudioPlayer src="/[your_audio_file_name].[extension]" />
Welcome! This repository is a simple audio player built on Next.js, utilizing an event emitter to manage audio playback. Below are instructions for cloning, installing dependencies, and running the project.
To clone the repository, execute the following command in your terminal:
git clone https://github.com/uptron-io/next-js-event-emitter-audio-player.git
Navigate to the project's root folder and run the following command to install dependencies:
npm install
To run the project, use the following command:
npm run dev
After that, you can open your browser and go to http://localhost:3000 to view the audio player.
Place your audio file in the public folder. Open the file /src/app/page.tsx and change the value of the src attribute to your audio file's name.
<AudioPlayer src="/[your_audio_file_name].[extension]" />