/Redis-lib

Primary LanguageJavaScript

Redis-Server

Setup

  1. Check the npm packages:

    npm install
    
  2. Start the application

    node dist/index.js
    

Managing the project with Grunt

  • Runs eslint, babel:dist and mochaTest

    grunt
    
  • Runs the tests (the same as npm test)

    grunt mochatest
    
  • Compiles the .es6 files to .js

    grunt babel:dist
    
  • Lints the .es6 files

    grunt eslint