@tenp/cli
v0.0.17
Published
tenp脚手架
Downloads
4
Readme
Based on the express
implementation, using typescript
enhancements, creating services via pm2
👉👉👉API Docs
Framework progress
Installed via npm
$ npm install @tenp/cli -g
$ tenp init hellworld
$ cd hellworld
$ tenp dev
Create service
import { Application } from 'express'
import { Start ,Router, Config, Get, Request, Response } from '@tenp/core';
@Router()
class HelloWord{
private msg: string = 'Hello, world'
@config({ url: '/hello', name: 'hello', type: 'get' })
private hello(req: Request, res: Response): void {
res.end(`<h1>${this.msg}</h1>`)
}
@Get('/world')
private world(req: Request, res: Response): void {
res.end(`<h1>${this.msg}</h1>`)
}
}
Start({
port: 8080,
router: [ HelloWord ],
}).then((app: Application) => {
console.log('success')
})