JSPM

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

Minimalist, fast, simple web framework based on ExpressJS for node.

Package Exports

  • kieryjs
  • kieryjs/index.js

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

Readme

LOGO

Minimalist, fast, simple web framework based on ExpressJS for node.

  • npm version
  • npm download
  • install size
const kieryjs = require('kieryjs');

kieryjs.createServer({
    index: 'index.ejs',
    varPage: {},
    port: 3000,
    staticFolder: 'public'
});

kieryjs.createPage({
    pathLink: 'second',
    pathPage: 'second.ejs',
    varPage: {}
});

Installation

KieryJS is available on nodejs, before installing, download and install Node.js. For add KieryJS on your project, doing this command:

$ npm install kieryjs