https://github.com/rodrigokamada/nodejs-hashing
There is a class in the crypto module called Hash that we are going to use in the example.
https://github.com/rodrigokamada/nodejs-hashing
crypto hacktoberfest hash hashing nodejs security sha sha256
Last synced: 7 months ago
JSON representation
There is a class in the crypto module called Hash that we are going to use in the example.
- Host: GitHub
- URL: https://github.com/rodrigokamada/nodejs-hashing
- Owner: rodrigokamada
- License: mit
- Created: 2022-02-07T02:56:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-02T10:44:22.000Z (over 3 years ago)
- Last Synced: 2025-03-09T19:48:52.307Z (7 months ago)
- Topics: crypto, hacktoberfest, hash, hashing, nodejs, security, sha, sha256
- Language: JavaScript
- Homepage:
- Size: 5.86 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
# Hashing application example using Node.js
There is a class in the crypto module called [Hash](https://nodejs.org/api/crypto.html#class-hash) 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-hashing.git
```**2.** Install the dependencies.
```shell
npm ci
```**3.** Run the application.
```shell
npm start
```