2016-07-31 18:51:06 +00:00
|
|
|
|
2018-03-03 20:57:02 +00:00
|
|
|
Make sure you have `nodemon` and `node-sass` installed
|
|
|
|
`$ npm install -g nodemon node-sass`
|
2016-07-31 18:51:06 +00:00
|
|
|
|
|
|
|
|
2018-03-03 20:57:02 +00:00
|
|
|
Run both of the following at the same time, in two terminals
|
2016-07-31 18:51:06 +00:00
|
|
|
|
2018-03-03 20:57:02 +00:00
|
|
|
```
|
|
|
|
$ nodemon server.js
|
|
|
|
$ node-sass -w sass/application.scss public/css/application.css
|
|
|
|
```
|