Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
node-serialization
Advanced tools
A serialization library for node. Serialize/Deserialize a huge object to/from a file.
A serialization library for node. Serialize/Deserialize a huge object to/from a file.
Using v8 Serialization API as default. You can provide custom serialization functions, like JSON(stringify/parse), json-stream-stringify, etc.
const { readFile, writeFile } = require("node-serialization");
Write a object to a file and read the file restore a object.
var path = "cache.data";
var data = {
foo: "bar",
};
writeFile(path, data).then(() => console.log("saved"));
readFile(path).then((data) => console.log(data));
Use a custom serialization method.
const { serialization } = require("node-serialization");
const serialize = function (object) {
return JSON.stringify(object);
};
const deserialize = function (string) {
return JSON.parse(string);
};
const { readFile: readJsonFile, writeFile: writeJsonFile } = serialization(
serialize,
deserialize
);
var path = "cache.json";
var data = {
foo: "bar",
};
writeJsonFile(path, data).then(() => console.log("saved"));
readJsonFile(path).then((data) => console.log(data));
Deserialize a file then serialize into another file with different serialization.
const {
convert,
serializeJson,
deserialize: deserializeV8,
} = require("node-serialization");
convert(
"cache.data",
deserializeV8,
"cache.data.json",
serializeJson
).catch((err) => console.error(err));
If file
parameter is a file path (type is string, not a buffer or a file descriptor), the writeXxx
functions will write content to a temporary file while writing, and rename to the path of file
parameter when success. So even if an exception(such as OOM) occurs, the file will not be a file with content loss.
Copyright (c) 2020 dailyrandomphoto. Licensed under the MIT license.
FAQs
A serialization library for node. Serialize/Deserialize a huge object to/from a file.
We found that node-serialization 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.