norice

Servers JSON files proxy throngh routes

  • norice

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
norice
923.0.36 months ago6 years agoMinified + gzip package size for norice in KB

Readme

Install

npm install -g norice

write config norice.config.js
const path = require('path');

module.exports = {
  webpackDev: require('./webpack.dev.js'),
  api: {
    '/test': {
      get: {
        body: () => 'hello world!',
      },
    },
  },
};

run

$ norice -p 3000