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.
@harmoniclabs/cbor
Advanced tools
npm install @harmoniclabs/cbor
import { Cbor, CborText } from "@harmoniclabs/cbor";
const input = "6B68656C6C6F20776F726C64";
const cborObj = Cbor.parse( input );
if( cborObj instanceof CborText )
{
console.log( cborObj.text ) // prints "hello world"
}
const encoded = Cbor.encode( cborObj ).toString();
console.log( encoded ) // prints "6b68656c6c6f20776f726c64" (lower case hex)
Cbor
to parse/encode CBOR you can use the Cbor
static class.
export declare class Cbor {
private constructor();
static encode(cborObj: CborObj): CborString;
static parse(cbor: CborString | Uint8Array | string): CborObj;
}
parse
allows you to go from a thing that can represent CBOR (a CborString
object is always valid) to a CborObj
encode
takes a CborObj
and returns a CborString
.
CborString
is an object that represents a valid CBOR string;
extending a ByteString
includes:
toString
method that returns a lower case hex string.toBuffer
method that returns the Uint8Array
representation of the string.class CborString {
toString(): string
toBuffer(): Uint8Array
}
CborObj
result of Cbor.parse
; represents a generic CBOR tag corresponding to one of the possible Major types.
type CborObj
= CborNegInt
| CborUInt
| CborBytes
| CborText
| CborArray
| CborMap
| CborTag
| CborSimple;
FAQs
cbor library for easy cbor parsing, manipulation and conversion
The npm package @harmoniclabs/cbor receives a total of 203 weekly downloads. As such, @harmoniclabs/cbor popularity was classified as not popular.
We found that @harmoniclabs/cbor demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
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.