81baae7be0
Bumps [prettier](https://github.com/prettier/prettier) from 2.3.2 to 2.4.1. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.3.2...2.4.1) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
.github | ||
.husky | ||
src | ||
.drone.yml | ||
.eslintrc.js | ||
.gitignore | ||
.prettierrc.json | ||
LICENSE | ||
package.json | ||
README.md | ||
tsconfig.json |
CUBETIQ Express Server
- Express
- TypeScript
- Decorators
Getting Start
- Add code into your
index.ts
import "reflect-metadata"
import { createServer } from "http"
import server from "./server"
const app = server.instance
const httpServer = createServer(app)
httpServer.listen(process.env.PORT || 3000, () => {
console.log(`Server listening on port: 3000`)
})
- Create
server.ts
import { Request, Response } from "express"
import { Application } from "./application"
import { Controller, Get } from "./decorators"
@Controller("/index")
class IndexController {
@Get()
public async index(req: Request, res: Response) {
res.json({
status: 200,
})
}
}
class Server extends Application {
get controllers(): any[] {
return [IndexController]
}
}
export default new Server()
Contributors
- Sambo Chea sombochea@cubetiqs.com