A Super fast and simple web framework for node.js.
const flicker = require('flickerjs');
var app = flicker();
app
.add({
url: '/',
handler: (req, res) => {
res.send('Hello Flicker.js');
}
})
.listen(3000);
$ npm install flickerjs
###Documentacion del proyecto en español
via flicker-easy package. Generating the app:
$ flickerjs todolist
Or
$ flicker todolist /mydir
$ cd mydir
Install dependencies:
$ npm install
Starting your server
$ npm start
To view examples clone the repo and run the example you want. List of example files:
- api.js
- app.js
- basic.js
- router.js
- next.js
$ git clone https://github.com/flickerstudio/flickerjs.git
$ cd flickerjs
$ npm install
$ node /examples/[file]
To run tests, after you clone the repo:
$ npm install
$ npm test
Thanks to: