Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
nestjs-etcd3
Advanced tools
Etcd3 for NestJs.
Yarn
yarn add nestjs-etcd3
NPM
npm install nestjs-etcd3 --save
Let's register the EtcdModule in app.module.ts
import { Module } from '@nestjs/common'
import { EtcdModule} from 'nestjs-etcd3'
@Module({
imports: [
EtcdModule.root({
hosts: 'http://127.0.0.1:2379',
}),
],
})
export class AppModule {}
Options
interface EtcdModuleOptions {
/**
* Optional client cert credentials for talking to etcd. Describe more
* {@link https://coreos.com/etcd/docs/latest/op-guide/security.html here},
* passed into the createSsl function in GRPC
* {@link https://grpc.io/grpc/node/grpc.credentials.html#.createSsl__anchor here}.
*/
credentials?: {
rootCertificate: Buffer;
privateKey?: Buffer;
certChain?: Buffer;
};
/**
* Internal options to configure the GRPC client. These are channel options
* as enumerated in their [C++ documentation](https://grpc.io/grpc/cpp/group__grpc__arg__keys.html).
* For example:
*
* ```js
* const etcd = new Etcd3({
* // ...
* grpcOptions: {
* 'grpc.http2.max_ping_strikes': 3,
* },
* })
* ```
*/
grpcOptions?: ChannelOptions;
/**
* Etcd password auth, if using.
*/
auth?: {
username: string;
password: string;
};
/**
* A list of hosts to connect to. Hosts should include the `https?://` prefix.
*/
hosts: string[] | string;
/**
* Duration in milliseconds to wait while connecting before timing out.
* Defaults to 30 seconds.
*/
dialTimeout?: number;
/**
* Backoff strategy to use for connecting to hosts. Defaults to an
* exponential strategy, starting at a 500 millisecond
* retry with a 30 second max.
*/
backoffStrategy?: IBackoffStrategy;
/**
* Whether, if a query fails as a result of a primitive GRPC error, to retry
* it on a different server (provided one is available). This can make
* service disruptions less-severe but can cause a domino effect if a
* particular operation causes a failure that grpc reports as some sort of
* internal or network error.
*
* Defaults to false.
*/
retry?: boolean;
}
That's it!
FAQs
a nestjs etcd3 module
We found that nestjs-etcd3 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.