typescript-express-basic
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

Welcome to typescript-express-basic 👋

Version Documentation Maintenance License: MIT

Basic api concept using typescript for express.

https://www.npmjs.com/package/typescript-express-basic

🏠 Homepage

Concept

alt text

Install

Install express from https://expressjs.com/

npm install express --save

Install extend express basic

npm install typescript-express-basic --save

Creating example controller

export class PublicController extends ApiController {
    public controllerName = 'public';

    @ApiRoute({
        method: ApiMethod.GET,
        path: '/get'
    })
    public get(req: Request, res: Response): void {
        const id = req.query.id;
        res.status(StatusCode.Ok);
        res.send('Public get ' + id);
    }
}

Register app & controllers

const port = 3000;
let app = apiExpress;
app.use(express.json());

// Register controller
app.registerController(new PublicController());

app.listen(port, () => {
    console.log(`[server]: Server is running at http://localhost:${port}`);
});

Run test project

npm run test

Link: http://localhost:3000

Author

👤 vosonha89

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2024 vosonha89.
This project is MIT licensed.


This README was generated with ❤️ by readme-md-generator

Package Sidebar

Install

npm i typescript-express-basic

Weekly Downloads

0

Version

1.0.3

License

MIT

Unpacked Size

51 kB

Total Files

21

Last publish

Collaborators

  • sonhavt89