https://github.com/branflake2267/debugging-service-typescript
Debugging a backend service written with TypeScript
https://github.com/branflake2267/debugging-service-typescript
debugging-with-brandondonnelson node typescript visual-studio-code vscode
Last synced: about 1 month ago
JSON representation
Debugging a backend service written with TypeScript
- Host: GitHub
- URL: https://github.com/branflake2267/debugging-service-typescript
- Owner: branflake2267
- License: other
- Created: 2020-05-03T22:00:02.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-14T01:50:49.000Z (almost 6 years ago)
- Last Synced: 2025-05-07T11:39:45.952Z (11 months ago)
- Topics: debugging-with-brandondonnelson, node, typescript, visual-studio-code, vscode
- Language: TypeScript
- Homepage: https://www.youtube.com/watch?v=cjTZT5S3MrY
- Size: 12.7 KB
- Stars: 2
- Watchers: 1
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Debugging a backend service written with TypeScript
This is a simple backend service project template written with TypeScript.
[](https://www.youtube.com/watch?v=cjTZT5S3MrY)
## Project Configuration
| Setting | Value |
| --- | --- |
| Purpose | Backend service |
| Language | TypeScript |
| Architecture | npm/node |
| IDE | Visual Studio Code |
| License | GPL v3 |
| Tutorial | [Youtube Tutorial](https://www.youtube.com/watch?v=cjTZT5S3MrY) |
## Build
* Run `npm install`
* Run `npm run build`
* The source is output to the `./dist` directory.
## Debugging
### Debug with Visual Studio Code
VS Code can run the service which allows for execution breakpoints, stack tracing, variable inspection and stack analysis.
* Open VSCode and go to the launchers and run `Launch Service`.
### Debug with npm
npm can execute the service, but start with building it first.
* Run `npm run build`
* Run `npm run service`