https://github.com/backpackerhh/typescript-course-framework
TypeScript: The Complete Developer's Guide - App 4
https://github.com/backpackerhh/typescript-course-framework
Last synced: 8 days ago
JSON representation
TypeScript: The Complete Developer's Guide - App 4
- Host: GitHub
- URL: https://github.com/backpackerhh/typescript-course-framework
- Owner: backpackerhh
- Created: 2024-01-23T15:54:17.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-25T15:52:07.000Z (over 2 years ago)
- Last Synced: 2025-11-20T06:15:44.486Z (7 months ago)
- Language: TypeScript
- Size: 60.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Maps
## Up and running
Install dependencies:
```bash
$ npm run install-deps
```
Run server:
```bash
$ npm start
```
Go to http://localhost:1234 to see the project in the browser.
Run API:
```bash
$ npm run start-server
```
Go to http://localhost:3000 to see the API in the browser.
## Notes
In the `tsconfig.json` file following option was defined:
```json
{
"compilerOptions": {
// ...
"moduleResolution": "NodeNext"
},
}
```
More details about module resolution [here](https://www.typescriptlang.org/tsconfig#moduleResolution).
Note that `tsconfig.json` file is not included in this repository because I use a global file for all this mini-projects created for this course.