
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
transfer-replitdb
Advanced tools
Transfer your ReplitDB data without completely rewriting your app when moving a project to a different hosting platform.
A node.js module that allows you to effortlessly transfer your ReplitDB data without completely rewriting your app when moving a project to a different hosting platform.
const Database = require("transfer-replitdb")
const db = new Database()
db.set("foo", "bar");
db.get("foo").then(console.log); // bar
db.import("ReplitDB URL")
// Get your ReplitDB url by running `echo $REPLIT_DB_URL` in your old Repl's terminal.
Import the database
const Database = require("transfer-replitdb")
Create a new database
const db = new Database()
Set a key to a value
db.set("key", "value").then(() => {});
Get a key's value
db.get("key").then(value => {});
Delete a key
db.delete("key").then(() => {});
List all keys
db.list().then(keys => {});
List all keys with a prefix
db.list("prefix").then(matches => {});
Empty the database
db.empty().then(() => {});
Get all keys and values
db.getAll().then(all => {});
Set all keys in the database
db.setAll({ "key": "value" }).then(all => {});
Delete multiple keys
db.deleteMultiple([ "key1", "key2" ]).then(() => {});
FAQs
Transfer your ReplitDB data without completely rewriting your app when moving a project to a different hosting platform.
The npm package transfer-replitdb receives a total of 1 weekly downloads. As such, transfer-replitdb popularity was classified as not popular.
We found that transfer-replitdb 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.