An open API service indexing awesome lists of open source software.

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.

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/)