https://github.com/hasithaishere/typescript-express-starter
Seed project for initializing Express project with TypeScript
https://github.com/hasithaishere/typescript-express-starter
Last synced: 11 months ago
JSON representation
Seed project for initializing Express project with TypeScript
- Host: GitHub
- URL: https://github.com/hasithaishere/typescript-express-starter
- Owner: hasithaishere
- Created: 2018-02-05T12:27:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-05T12:39:59.000Z (over 8 years ago)
- Last Synced: 2025-02-25T00:36:53.795Z (over 1 year ago)
- Language: TypeScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Express Seed Project (With Node and TypeScript)
## Introduction
> This repository provides the seed project for JS developers who need to easily initialize [Express](https://expressjs.com/) project with [TypeScript](https://www.typescriptlang.org/). Also this contains the sample RESTful APIs and unit tests for easy understanding.
## How to start development
1. Fork/Clone
1. Install dependencies - `npm install`
1. Run the development server - `npm run dev`
1. Test - `npm test` (In different terminal instance)
## How to build and run on server
1. Fork/Clone
1. Install dependencies - `npm install`
1. Build source - `npm run build`
1. Run - `npm start`
> Application run on [http://localhost:3000/](http://localhost:3000/).
