
Product
Introducing Module Reachability: Focus on the Vulnerabilities That Matter
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
Stringify and parse JSON
data as Base64.
base64json.stringify()
and base64json.parse()
work as you'd expect the native JSON
methods to, however the input or output will be Base64.
Use with caution — this doesn't validate JSON
, so when using base64json.parse()
you have to know that the encoded string is actually JSON
.
Under the hood, base64json uses buffer and JSON3 (see Changes from JSON2 and Date Serialization).
$ npm install --save base64json
const base64json = require('base64json');
See test.js
and run npm test
to try the following examples.
let encoded = base64json.stringify({ 'hello':'world' }, null, 2);
// → "ewogICJoZWxsbyI6ICJ3b3JsZCIKfQ=="
let decoded = base64json.parse('ewogICJoZWxsbyI6ICJ3b3JsZCIKfQ==');
// → { "hello":"world" }
// → decoded.hello === 'world'
It could be argued this module doesn't need to exist, and I'd probably agree with you — Base64 isn't the most efficient way to store JSON
.
While working with JSON
files pulled from the Repository Contents endpoint of the GitHub API, I needed a quicker way of stringifying and parsing that content
response. This module only exists because I didn't want to keep doing this:
let encoded = Buffer.from(JSON.stringify({ 'hello':'world' }), 'ascii').toString('base64');
let decoded = JSON.parse(Buffer.from('eyJoZWxsbyI6IndvcmxkIn0=', 'base64').toString('ascii'));
(The MIT License)
Copyright (c) 2016 John Flesch.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Stringify and parse JSON data as Base64.
The npm package base64json receives a total of 172 weekly downloads. As such, base64json popularity was classified as not popular.
We found that base64json 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.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
Company News
Socket is bringing best-in-class reachability analysis into the platform — cutting false positives, accelerating triage, and cementing our place as the leader in software supply chain security.
Product
Socket is introducing a new way to organize repositories and apply repository-specific security policies.