1.1.4 • Published 5 years ago

ksp v1.1.4

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

ksp

Build Status codecov npm version npm bundle size (minified)

A simple framework for build your app more easiest !

Active modules

  • ksp-express (Create a express web site with ksp framework)

Install

$ npm install ksp

Usage

const ksp = require('ksp')
const run = ksp.runKsp // or use ksp.runKsp() instead of create a const

ksp.createKsp('some thing', (message) => {
    console.log(message)
})

run('some thing', 'done!')
// => "done!"

More example can be found here (eg. callback function/promise/return)

Methods

createKsp(name: string, run: Function): void
ksp.createKsp('some thing', (callback) => {
    // eg. get user from db
    callback(user)
})
runKsp(name: string, ...args: any): any
ksp.runKsp('some thing', (user) => {
    console.log(user.name)
})
use(module: any): void
const kspExpress = require('ksp-express')
ksp.use(kspExpress())

Test

$ git clone https://github.com/dotjov/ksp
$ npm install
$ npm run test

Debug

Ksp support debug, set DEBUG = 'ksp'. It will print when a ksp has been run or create and a module has been added

License

MIT License

Copyright (c) 2019 dotjov

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago

0.0.7-beta

10 years ago