This package has been deprecated

Author message:

WARNING: This project has been renamed to kaon.js. Install using kaon.js instead.

keon

0.1.5 • Public • Published

Keon

keon is an react isomorphic app solution. it contains webpack build, hot reloading, code splitting and server side rendering.

The main stack

  • koa
  • react
  • redux
  • react-router
  • react-helmet
  • webpack
  • postcss
  • react-hot-loader
  • react-loadable
  • babel

Usage

install

npm install keon

or with yarn

yarn add keon

add your config

Config is a js file that default exported a Javascript object, it specified a lot ot configurations. The default path is <project_root>/config/cybertron.config.js. But you can put it into anywhere of your project.

An configuration specified these optons:

app

  • app.name - The app name
  • app.shortName - The short app name.
  • app.port - App listening port.
  • app.keys - Used for cookie encryption.
  • app.routes - Customize koa routes.

resources

  • resources.root - If resources.root is exist, keon will serve all files inside the path as static server.

logs

  • logs.path - the access log will be written to here.
  • logname - logname

cache

  • cache.redisCacheAlive - The cache life stored in redis, should be an int.
  • cache.memoryCacheAlive - The cache life stored in memory, should be an int.
  • cache.validStatus - Cache the result only if response status matched the given status, should be an array.
  • cache.validMethods - Cache the result only if the request method metch the given method.

isomorphic

  • isomorphic.routes - The client routes path, should be an string, the default value is <project_root>/src/routes.
  • isomorphic.store - The client store path, should be an string, the default value is <project_root>/src/store/configureStore
  • isomorphic.main - The client entry

postcss

  • postcss.path - If use postcss, shoud specify postcss path.

build

  • build.host - The dev server will server at this host.
  • build.port - the dev server port.
  • build.path - the dev server url path.
  • webpack - if you will override default webpack configurations, then specify this path, and it should be an function witch return webpack configuration with given env. If no file found, an warn will be shown.
  • build.target - the build result path.

command line

command: keon <cmd> [options]

commands

keon start [options]

available options:

  • config - specify config path

keon build [options]

available options:

  • config - specify config path

nodejs APIs

You can use keon as an npm modules instead of cli.

const Keon = require('keon');
const keon = new Keon(config);

keon.start();

Readme

Keywords

none

Package Sidebar

Install

npm i keon

Weekly Downloads

2

Version

0.1.5

License

MIT

Unpacked Size

332 kB

Total Files

38

Last publish

Collaborators

  • abramstyle