Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
grpc-create-metadata
Advanced tools
Simple Node.js helper utility for creating gRPC metadata
Example (Installation)
npm install grpc-create-metadata
Example (Usage)
const grpc = require('grpc')
const create = require('grpc-create-metadata')
const meta = create({
name: 'Bob',
age: 20,
active: true
});
console.log(meta instanceof grpc.Metadata) // true
console.dir(meta.getMap()) // { foo: 'bar', age: '12', prop: 'true' }
Metadata
⏏Utility helper function to create Metadata
object from plain Javascript object
This strictly just calls Metadata.add
with the key / value map of objects.
If the value is a Buffer
it's passed as is.
If the value is a Sting
it's passed as is.
Else if the value defined and not a string we simply call toString()
.
Note that Metadata
only accept string or buffer values.
Kind: Exported function
Returns: Metadata
- An instance of Metadata
, or undefined
if input is not an object
Param | Type | Description |
---|---|---|
metadata | Object | Plain javascript object to tranform into Metadata If an instance of Metadata is passed in it is simply returned |
options | Object | options |
options.addEmpty | Boolean | whether to add empty strings. Default: false |
FAQs
A simple Node.js helper utility for creating gRPC metadata
We found that grpc-create-metadata 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.