JSPM

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

Flicker.js app generator

Package Exports

  • flicker-easy

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 (flicker-easy) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

logo

Flickerjs Apps generator ( for Flicker.js 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);

Usage

$ flickerjs myapp

Or

$ flicker todolist /mydir
$ cd mydir