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

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.

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.

[![Website](https://shields.braskam.com/v1/shields?name=website&format=rectangle&size=small&radius=5)](https://rodrigo.kamada.com.br)
[![LinkedIn](https://shields.braskam.com/v1/shields?name=linkedin&format=rectangle&size=small&radius=5)](https://www.linkedin.com/in/rodrigokamada)
[![Twitter](https://shields.braskam.com/v1/shields?name=twitter&format=rectangle&size=small&radius=5&socialAccount=rodrigokamada)](https://twitter.com/rodrigokamada)
[![Instagram](https://shields.braskam.com/v1/shields?name=instagram&format=rectangle&size=small&radius=5)](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
```