baseliblib
v1.0.0
Published
Base lib application service
Downloads
1
Readme
Libre
Libre 1.0 application service
Author: Yuri [email protected]
Requirements
- Node.js, There are two options for installing Node.js on Mac OS X:
- Download and install the binaries from Node.js (Easier, but not recommended!)
- Using Homebrew, which is a better option:
- First install XCode Command Line Tools,
xcode-select --install
- Install Homebrew, visit Homebrew, or
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
- Run
brew doctor
- Run
brew install node
- First install XCode Command Line Tools,
- Node Packaged Modules (or Node Package Manager), npm, which should be installed along with Node
- Grunt, JavaScript Task Runner,
npm install -g grunt-cli
visit Grunt for more information - Gulp, Same as Grunt,
npm install --global gulp
,npm install --save-dev gulp
Installation
- Go to the folder node, run
npm install
command - For later updates, run
npm update
Gulp Tasks (recommended)
gulp development
starts node application on port 3000 in debug mode and nodemon for development and debugging
Grunt Tasks (deprecated)
grunt development
starts node application on port 3000 in debug mode, runs node-inspector on port 8080 and nodemon for development and debugginggrunt production
does nothing, for now