
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
@condor-labs/auth-ec
Advanced tools
This module provide an useful helper to use the authentication service in EC.
This module provide an useful helper to use the authentication service in EC.
The minimum supported version of Node.js is v8.
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 propertiesProperty | Default | Description |
---|---|---|
authBaseURL (url) | null | This URL correspond to the Auth service. |
cacheTTLSecsForBasicToken (number) | null | Time in secs to keep cache for BasicToken (apikey) validation. Default: 24 Hrs |
cacheTTLSecsForSessionToken (number) | null | Time in secs to keep cache for SessionToken validation. Default: 60 Secs |
redisSettings*(Object)* | null | Check this settings for details |
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)
}
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.
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/.
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
The original author and current lead maintainer of this module is the @condor-labs development team.
More about Condorlabs Here.
FAQs
This module provide an useful helper to use the authentication service in EC.
We found that @condor-labs/auth-ec demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.