prg-titech / Kanon

A live programming environment specialized for data structure programming.
https://prg-titech.github.io/Kanon/
MIT License
68 stars 4 forks source link

Add grunt #10

Closed 3tty0n closed 7 years ago

3tty0n commented 7 years ago

What is this?

Introduce Grunt, the JavaScript task runner.

Install

$ brew install node # node.js is required
$ npm install

Usage

If you execute following command, local server is started.

$ npm start # == grunt serve

Grunt watches whether your js files are modified, and if it is changed, Grunt reload the local server.

In other words, Grunt is an automation tool.

Reference