GitHub - types/express: Typings for express ๐
-
Notifications
You must be signed in to change notification settings - Fork 15
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Latest commitHistory | ||||
Repository files navigation
Typed express
Typescript Typings for express.
Installation
typings install --save express
or
npm install --save-dev types/npm-express#<commit hash>
Usage
import express = require('express'); const app = express(); app.get('/', (req: express.Request, res: express.Response) => { res.send('Hello World'); }); app.listen(3000);
Contributing
You can run the tests by running npm run build and then npm run test.
Based on the typings by Boris Yankov on DefinitelyTyped
About
Typings for express ๐
Resources
Stars
Watchers
Forks
Releases
No releases published