https://github.com/dennis960/template-express-ts
A minimal express template using typescript because I didn't find one
https://github.com/dennis960/template-express-ts
express typescript
Last synced: 4 months ago
JSON representation
A minimal express template using typescript because I didn't find one
- Host: GitHub
- URL: https://github.com/dennis960/template-express-ts
- Owner: Dennis960
- License: mit
- Created: 2023-02-25T10:18:18.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-25T10:35:14.000Z (almost 3 years ago)
- Last Synced: 2025-01-18T00:43:02.367Z (12 months ago)
- Topics: express, typescript
- Language: TypeScript
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Template-Express-Ts
This is a template for a Node.js Express server with Typescript.
## Getting Started
### Prerequisites
- Node.js
- NPM
### Installing
1. Clone the repo
2. Install NPM packages
```sh
npm install
```
3. Run the server
```sh
npm run dev
```
4. Enjoy Express with Typescript!
### Deployment
1. Build the project
```sh
npm run build
```
2. Copy the `dist` folder to your server
3. Run the server with node
```sh
node dist/index.js
```
## Built With
- [Express](https://expressjs.com/) - The web framework used
- [Typescript](https://www.typescriptlang.org/) - The language used
- [NPM](https://www.npmjs.com/) - Dependency Management
## License
Distributed under the MIT License. See `LICENSE` for more information.