mirror of
https://github.com/Floriansylvain/creative_coding_1.git
synced 2026-08-19 11:43:20 +02:00
15 lines
276 B
Markdown
15 lines
276 B
Markdown
## Setup
|
|
Download [Node.js](https://nodejs.org/en/download/).
|
|
Run this followed commands:
|
|
|
|
``` bash
|
|
# Install dependencies (only the first time)
|
|
npm install
|
|
|
|
# Run the local server at localhost:8080
|
|
npm run dev
|
|
|
|
# Build for production in the dist/ directory
|
|
npm run build
|
|
```
|