https://github.com/buzzcosm/ztm-course-exercises-nodejs-package-example
Exercises for node packages.
https://github.com/buzzcosm/ztm-course-exercises-nodejs-package-example
axios javascript nodejs package-json ztm ztm-course-exercises
Last synced: 14 days ago
JSON representation
Exercises for node packages.
- Host: GitHub
- URL: https://github.com/buzzcosm/ztm-course-exercises-nodejs-package-example
- Owner: buzzcosm
- Created: 2024-11-01T17:06:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-01T18:57:32.000Z (over 1 year ago)
- Last Synced: 2025-10-20T14:07:42.295Z (7 months ago)
- Topics: axios, javascript, nodejs, package-json, ztm, ztm-course-exercises
- Language: JavaScript
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Package Example
`ZTM` Udemy Course - [Complete NodeJS Developer](https://www.udemy.com/course/complete-nodejs-developer-zero-to-mastery).
## Prerequisite
- `Node.js` is installed โก
- Prefered Code-Editor/IDE is installed (For example: `vscode`) โ
- Terminal is ready ๐
## Description
Exercises for node packages.
## Process
Install npm packages โฌ
```shell
npm install
```
Run node application ๐๏ธ๐จ
```shell
npm start
```
Clean packages ๐งน๐ชฃ
```shell
npm run clean
```
Check vulnerabilities ๐ค
```shell
npm audit
```
Fix vulnerabilities if needed โ
```shell
npm audit fix
```
## Useful references
- [npm SemVer Calculator](https://semver.npmjs.com/)