This project implements a starting point for a Next.js-based project. You need to have Node v16 available.
npm install
Once the project dependencies are installed, you can run the following command to serve the files of the project in development mode.
npm run dev
With the server running you can open your browser and type the server URL into the address bar:
http://127.0.0.1:8080
There are other scripts available to run. See the scripts
section of package.json
. The following are available:
Lint your code to detect style and some syntax errors
npm run lint
Compile a production build of your app
npm run build
Run the compiled production build of the server
npm run start
Print out some system info related to your server
npm run info
- Lint your code before commiting your changes