GitBook: [docs] 3 pages modified

This commit is contained in:
Jyotirmoy Bandyopadhayaya 2021-07-17 18:14:22 +00:00 committed by gitbook-bot
parent d114565313
commit bc7c6afbe9
No known key found for this signature in database
GPG Key ID: 07D2180C7B12D0FF
3 changed files with 13 additions and 4 deletions

View File

@ -9,7 +9,6 @@ Many developers face security issues while linking Backend with Frontend.
For instance, unable to verify weather the HTTP request came from your Frontend Website,
Or, Backend API being data-scraped/mined, etc.
So, to handle these usecases, I build this Project.
```
## Welcome to encrypted-randomizer 👋

View File

@ -3,3 +3,15 @@
* [About](README.md)
* [Usage](usage.md)
## References
---
* [cryptr](https://www.npmjs.com/package/cryptr)
* [crypto-js](https://www.npmjs.com/package/crypto-js)
* [crypto](https://node.readthedocs.io/en/latest/api/crypto/)
## Developers
* [Bravo68web](https://bravo68web.me/)

View File

@ -47,14 +47,13 @@ async axios(config)
.catch(function (error) {
console.log(error);
});
```
{% endtab %}
{% endtabs %}
## Backend
At Backend, integrate as follows :-
At Backend, integrate as follows :-
{% tabs %}
{% tab title="Initialization" %}
@ -62,7 +61,6 @@ At Backend, integrate as follows :-
const { Validator } = require("encrypted-randomizer");
const privateKey = process.env.YOUR_AUTH_KEY;
// set same YOUR_AUTH_KEY as an enviornment variable as used above.
```
{% endtab %}