November 2019
Beginner
436 pages
8h 52m
English
As in all the previous chapters, let's start by creating a project scaffold. We are going to call our project music-player; it is going to use a pure JavaScript and HTML5 stack without any additional frameworks. You can always wire a framework of your choice later.
Let's create a new project using the Terminal window or Command Prompt:
mkdir music-playercd music-player
The preceding commands create a new directory for your music player application.
npm init -yecho node_modules ...
Read now
Unlock full access