
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
BaseNone is a simple dependency free library to encode Uint8Array to strings and back.
BaseNone should work in any modern browser, compliant javascript runtimes and Node.js.
npm install basenone
import BaseNone from 'basenone'
const baseNone = new BaseNone(Uint8Array)
// static method
const baseNone = BaseNone.fromAscii('My ascii string');
// raw Uint8Array
const raw = baseNone.getRaw();
// BaseNone to ascii
const ascii: string = baseNone.toAscii();
// static method
const baseNone = BaseNone.fromBinary('0100100001100101011011000110110001101111');
// raw Uint8Array
const raw = baseNone.getRaw();
// BaseNone to binary
const binary: string = baseNone.toBinary();
// static method
const baseNone = BaseNone.fromHex('48656c6c6f2c20576f726c6421');
// raw Uint8Array
const raw = baseNone.getRaw();
// BaseNone to hex
const hex: string = baseNone.toHex();
// static method
const baseNone = BaseNone.fromBase64('SGVsbG8sIFdvcmxkIQ==');
// raw Uint8Array
const raw = baseNone.getRaw();
// BaseNone to base64
const base64: string = baseNone.toBase64();
// static method
const baseNone = BaseNone.fromUTF8('你好世界');
// raw Uint8Array
const raw = baseNone.getRaw();
// BaseNone to utf8
const utf8: string = baseNone.toUTF8();
FAQs
Encode Uint8Array to strings and back.
We found that basenone 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.