Flicker.js

Super fast and simple web framework for node.js

Install

Via NPM:

$ npm install flickerjs 

Basic usage

You can generate a new Flicker.js app with one command:

$ flickerjs myapp 

or:

$ flickerjs myapp /mydir

a simple application using flicker.js:


    const flicker = require('flicker');
    var app = flicker();
    app
        .add({
            url: '/',
            method: 'GET',
            handler: (req, res, next) => {
                res.send("Hello World");
            }
        })
        .listen(3000);