Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@condor-labs/auth-ec

Package Overview
Dependencies
Maintainers
6
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@condor-labs/auth-ec

This module provide an useful helper to use the authentication service in EC.

  • 1.0.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
10
increased by400%
Maintainers
6
Weekly downloads
 
Created
Source

This module provide an useful helper to use the authentication service in EC.

Compatibility

The minimum supported version of Node.js is v8.

How to use it

To use the library you just need to follow the following steps Install the library with npm

npm install @condor-labs/auth-ec

Import the library:

const auth = require('@condor-labs/auth-ec')(settings);

settings object properties

PropertyDefaultDescription
authBaseURL (url)nullThis URL correspond to the Auth service.
cacheTTLSecsForBasicToken (number)nullTime in secs to keep cache for BasicToken (apikey) validation. Default: 24 Hrs
cacheTTLSecsForSessionToken (number)nullTime in secs to keep cache for SessionToken validation. Default: 60 Secs
redisSettings*(Object)*nullCheck this settings for details

Examples

constants.js

module.exports = {
    settings: {
        appName: 'EXAMPLE_APP',
        authBaseURL: 'https://auth.ec.com',
        redisSettings:{
            host: 'redis.cloud.redislabs.com',
            port: 17005,
            password: '****'
        }
    }
};

index.js

const {
    settings
} = require('./constants');

try {
    (async () => {
        const auth = require('./../library')(settings);
        console.log('settings OK')
        console.log('==================================')
        let res = await auth.validateSessionToken({
            token:'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9xxxxxx'
        });
        console.log('auth.validateSessionToken() #1', res);
        console.log('==================================')
        let res2 = await auth.validateBasicToken({
            token: 'NzYyOWJhZjItMzgwMS00Yxxxxxx==', 
            authUsername: 'bc95d8fe-eb6d-4e7a-xxxxxx', 
            authPassword: 'Kiv6BBXLOsTAV8vI/nRxxxxxx', 
            applicationURL: 'https://xxxxxx.test.evercheck.com'
        });
        console.log('auth.validateBasicToken() #1', res2);
        // close app
        process.exit(1);
    })();
} catch (error) {
    console.error('settings ERROR',error)
}

How to Publish

Increasing package version

You will need to update the package.json file placed in the root folder.

identify the property version and increase the right number in plus one.

Login in NPM by console.

 npm login
 [Enter username]
 [Enter password]
 [Enter email]

If all is ok the console will show you something like this : Logged in as USERNAME on https://registry.npmjs.org/.

Uploading a new version

 npm publish --access public

Ref: https://docs.npmjs.com/getting-started/publishing-npm-packages

Note: you will need to have a NPM account, if you don't have one create one here: https://www.npmjs.com/signup

Contributors

The original author and current lead maintainer of this module is the @condor-labs development team.

More about Condorlabs Here.

License

MIT

Keywords

FAQs

Package last updated on 28 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc