https://github.com/rodrigokamada/nodejs-salting
There is a method in the crypto module called scrypt that we are going to use in the example.
https://github.com/rodrigokamada/nodejs-salting
hacktoberfest nodejs salt salting scrypt security
Last synced: 7 months ago
JSON representation
There is a method in the crypto module called scrypt that we are going to use in the example.
- Host: GitHub
- URL: https://github.com/rodrigokamada/nodejs-salting
- Owner: rodrigokamada
- License: mit
- Created: 2022-02-07T02:56:29.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-02T10:45:24.000Z (over 3 years ago)
- Last Synced: 2025-03-09T19:48:52.159Z (7 months ago)
- Topics: hacktoberfest, nodejs, salt, salting, scrypt, security
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# Salting application example using Node.js
There is a method in the crypto module called [scrypt](https://nodejs.org/api/crypto.html#cryptoscryptpassword-salt-keylen-options-callback) that we are going to use in the example.
[](https://rodrigo.kamada.com.br)
[](https://www.linkedin.com/in/rodrigokamada)
[](https://twitter.com/rodrigokamada)
[](https://www.instagram.com/rodrigokamada)## Prerequisites
Before you start, you need to install and configure the tools and services:
* [git](https://git-scm.com/)
* [Node.js and npm](https://nodejs.org/)
* IDE (e.g. [Visual Studio Code](https://code.visualstudio.com/))## Getting started
**1.** Clone the repository.
```shell
git clone git@github.com:rodrigokamada/nodejs-salting.git
```**2.** Install the dependencies.
```shell
npm ci
```**3.** Run the application.
```shell
npm start
```