1.0.7 • Published 1 year ago

web-auth-token v1.0.7

Weekly downloads
6
License
MIT
Repository
github
Last release
1 year ago

web-auth-token

Web rest api authentication token

Install

$ npm install --save web-auth-token

Usage

Step 1

var authToken = require('web-auth-token');

var data = {
   "username": "abcd",
   "password": "123456"
 }
authToken.authTokenUserCreate(data, function(result) {
   console.log(result);
});

Step 2

var authToken = require('web-auth-token');

var data = {
   "username": "abcd",
   "password": "123456",
   "expiredTime" : 0 // Expired in second "0" is unlimited
 }
authToken.authTokenGenarate(data, function(result) {
   console.log(result);
});

Step 3

var authToken = require('web-auth-token');

var secretKey = '40e500de41432de6ae60bfc0b75dccccba3a24af5c33509ae294491447840b23';

authToken.authTokenVerify(secretKey, function(result){
   console.log(result);
});

Features

This is a Node API package to secure any API created through Node Js. Following are main features of this package.

  • A web authentication user will be created.
  • With authenticated user information a secret key will be generated.
  • Attach the secret key with any API.
  • Verify the API with this secret key.

license

MIT

🔗 Links

linkedin

🚀 About Me

I'm a full stack developer. Experienced developer with over 20 years of expertise in crafting scalable web applications. Proficient in frontend technologies such as Angular and React, alongside extensive experience in WordPress, Drupal, and backend frameworks like Node.js. With a proven track record of delivering high-quality solutions to meet client needs and drive business objectives, I bring a versatile skill set and a commitment to excellence to every project.

Feedback

If you have any feedback, please reach out to us at dilipabc@gmail.com

1.0.7

1 year ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago