
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
npm i asset-js --save
Usage:
const asset = require("asset-js")(gethandler, sethandler, defaults, deleteHandler, autosave)
let myasset = await asset("asset1", defaultValue?, persistent /*persistent = available forever, never uncached, useful for assets used regularly like a config file*/)
myasset.someproperty = "a"
//gets saved automatically after a while
//or save everything manually:
asset.save()
Example:
const fs = require("fs")
function default(assetID){ //Gets called if a certain asset is not found (ie a default value)
if(assetID.startsWith("user/")){ //if assetID is in user folder
return { //return default userdata
username:"",
timeCreated:Date.now()
}
}else return {} //otherwise, return an empty object
}
function get(name){
return JSON.parse(fs.readFileSync(name))
}
function set(name, data){
fs.writeFileSync(name, JSON.strinify(data))
}
const asset = require("asset-js")(get, set, default, fs.unlinkSync, 900000 /*autosave every 900000ms, or 15mins*/)
var john = asset("user/john")
john.username = "johnny_english"
var configuration = asset("config.json", {} /*default value: function default() is ignored in this case*/)
configuration.allowRetards = false
asset.save() //optional because we have autosave
You can load custom pre-made wrapping functions (presets) to save yourself some time, for example, for firebase: (use asset-js-firestore
)
const asset = require("asset-js")(
require("asset-js-firestore")(collectionName, credentials, default)
//connnects to FIRESTORE!
)
Typically, assetdb presets on npm are named something like asset-js-XXX
, if you wish to make one, please use that format, as it will help users determine what the preset is made for.
FAQs
DB caching manager
We found that asset-js 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.