
Security News
GitHub Actions Supply Chain Attack Puts Thousands of Projects at Risk
A compromised GitHub Action exposed secrets in CI/CD logs, putting thousands of projects at risk and forcing developers to urgently secure their workflows.
@egodigital/microservices
Advanced tools
Shared library for microservices, written for Node.js, in TypeScript.
Execute the following command from your project folder, where your package.json
file is stored:
npm install --save @egodigital/microservices
Hash passwords with bcrypt:
import { checkPassword, checkPasswordSync, hashPassword, hashPasswordSync } from '@egodigital/microservices';
const hash1 = await hashPassword('test');
const matches2 = await checkPassword('test', hash1);
const hash2 = hashPasswordSync('test');
const matches2 = checkPasswordSync('test', hash2);
Sign and verify JSON Web Tokens:
import { signJWT, verifyJWT } from '@egodigital/microservices';
interface IUserToken {
uuid: string;
}
const jwt = signJWT({
uuid: 'cb246b52-b8cd-4916-bfad-6bfc43845597'
});
const decodedToken = verifyJWT<IUserToken>(jwt);
Use predefined Express middleware to verify and decode JWTs:
import express from 'express';
import { withJWT } from '@egodigital/microservices';
const app = express();
app.get('/', withJWT(), async (request, response) => {
// decoded, valid user token is stored in:
// request.userToken
});
app.listen(4242, () => {
console.log('Service is listening ...');
});
Name | Description | Example |
---|---|---|
BCRYPT_ROUNDS | The number of rounds for bcrypt hashing. Default: 10 | 12 |
JWT_SECRET | The secret for signing and validating JWT. | mySecretJWTSecret |
NATS_CLUSTER_ID | The name of the cluster, that contains all microservices. | my-cluster |
NATS_GROUP | The name of the pod group / Kubernetes deployment. | my-service-or-deployment |
NATS_URL | The URL to the NATS server. | http://my-nats-service:4222 |
POD_NAME | The name of the pod. This should come as imported metadata from Kubernetes. | my-service-or-deployment-xcsgbxv |
Connect to a NATS server:
import { stan } from '@egodigital/microservices';
await stan.connect();
stan.exitOnClose();
Listen for events:
import { stan } from '@egodigital/microservices';
interface IMyEvent {
foo: string;
bar: number;
}
const myEventListener = new NatsListener<IMyEvent>('my.event');
myEventListener.onMessage = (context) => {
// handle message in context.message of type IMyEvent
};
myEventListener.listen();
Publish events:
import { stan } from '@egodigital/microservices';
interface IMyEvent {
foo: string;
bar: number;
}
const myEventPublisher = new NatsPublisher<IMyEvent>('my.event');
await myEventPublisher.publish({
foo: "TM+MK",
bar: 42
});
The API documentation can be found here.
FAQs
Shared library for microservices, written for Node.js
The npm package @egodigital/microservices receives a total of 1 weekly downloads. As such, @egodigital/microservices popularity was classified as not popular.
We found that @egodigital/microservices demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
A compromised GitHub Action exposed secrets in CI/CD logs, putting thousands of projects at risk and forcing developers to urgently secure their workflows.
Research
Security News
A malicious Maven package typosquatting a popular library is secretly stealing OAuth credentials on the 15th of each month, putting Java developers at risk.
Security News
Socket and Seal Security collaborate to fix a critical npm overrides bug, resolving a three-year security issue in the JavaScript ecosystem's most popular package manager.