Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1012 Bytes

NOTICE.md

File metadata and controls

33 lines (22 loc) · 1012 Bytes

CSVx.js project installation guide

You just cloned CSVx.js : git clone https://github.com/LCluber/CSVx.js.git

Install nodejs :

Install grunt :

  • Run npm update -g npm to update npm
  • Run npm install -g grunt-cli

Install typescript :

  • Run npm install -g typescript

Install project dependencies

  • Run npm install in your project directory

Workflow

  • Run grunt to serve the website and start develop. (http://localhost:3000/)

  • Run grunt build to build the library in development mode and serve the website.

  • Run grunt build to build the library in production mode and serve the website.

  • Use grunt --help to see the list of tasks.

  • Set node environment if needed :

    • Run export NODE_ENV=development
    • Or export NODE_ENV=production