JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 14
  • Score
    100M100P100Q53440F
  • License MIT

Super fast and simple web framework for node.js (v6.0.0)

Package Exports

  • flickerjs

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (flickerjs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

logo A Super fast and simple web framework for node.js.

Build Status Dependency Status Build status

const flicker = require('flickerjs');
var app = flicker();
app
    .add({
    url: '/',
    handler: (req, res) => {
        res.send('Hello Flicker.js');
        }
    })
    .listen(3000);

Install

$ npm install flickerjs

Usage

###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

Examples

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]

Tests

To run tests, after you clone the repo:

$ npm install
$ npm test

Mini Doc

Flicker Quick Guide

Contributors

Thanks to:

License

MIT