Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@vorlefan/prisma-backup
Advanced tools
Export all the databse models into json files and use them as backup
Use this module to create a backup measure for your project that uses Prisma. You can either backup the information, or use them to migrate to another database, or just to reset the database. Example: Let's say that you need to change a unique key (email) to another like (code). You can backup first, then change the schema.prisma, and use this module to inject the old information.
In truth, this work with any database, ORM and etc, the only thing you need is that the models returns a Object (that has as value a array of objects).
With npm do:
npm install @vorlefan/prisma-backup
With yarn do:
yarn add @vorlefan/prisma-backup
A better documentation will be made at the near future.
import { runBackup, getBackup } from '@vorlefan/prisma-backup';
// The 'backup' function is async and has these properties
export type BackupProps = {
encrypt?: boolean; // true to encrypt data
password?: string; // if encrypt is true, then is required
folder?: string; // folder that will be saved the data generated
models: Record<string, Array<Record<any, any>>>; // models from prisma
onRoute?: (route: PathRoute) => any; // define the route save
backupFolderName?: string; // backup folder name that will be generated, by default is 'Date.now()'
};
await runBackup(props: BackupProps)
// To get the bakcup
export type GetBackupProps = {
password?: string; // if is encrypted, then is required
folder?: string; // the general folder, by default is '.db'
backupFolderName?: string; // instend of getting the most recent folder of backup, you can define to get from one
onRoute?: (route: PathRoute) => any; // define the route
onCurrentModel: GetBackupOnCurrentModelProps; // async function to handle each model
};
await getBackup(props: GetBackupProps)
Please, take a look at the 'example/backup_test/.db' folder of this repository
import { PrismaClient } from '@prisma/client';
import { runBackup } from '@vorlefan/prisma-backup';
const prisma = new PrismaClient();
void (async function () {
const [user] = await prisma.$transaction([prisma.user.findMany({})]);
// w/out encrypt
await runBackup({
models: {
user,
},
});
// w/ encrypt
await runBackup({
models: {
user,
},
encrypt: true,
password: 'pwd123',
});
})();
import { PrismaClient } from '@prisma/client';
import { runBackup } from '@vorlefan/prisma-backup';
import { BackupModels } from '@vorlefan/prisma-backup/dist/types/backup';
const prisma = new PrismaClient();
function chunk(array: Array<any>, size = 2) {
return Array.from(
{
length: Math.ceil(array.length / size),
},
(v, i) => array.slice(i * size, i * size + size)
);
}
void (async function () {
const user = await prisma.user.findMany();
const models: BackupModels = {};
const users = chunk(user, 2);
users.map((model, i) => {
const key = `user_${i}`;
models[key] = model;
});
await runBackup({
models,
backupFolderName: 'user',
});
})();
import { getBackup } from '@vorlefan/prisma-backup';
await getBackup({
onCurrentModel: async function ({ instance, currentModel, currentFile }) {
if (currentFile.name === 'user') {
const data = currentModel;
await instance.route.json().store({
routeName: '@',
filename: `${Date.now().toString(16)}.json`, /// `${data.name}.json`,
data,
});
}
},
folder: '.db',
onRoute: function (route) {
route.remove('root');
route.set('root', route.resolve(__dirname, '..'));
},
password: 'pwd123',
backupFolderName: 'encrypted',
});
FAQs
Export all the databse models into json files and use them as backup
The npm package @vorlefan/prisma-backup receives a total of 53 weekly downloads. As such, @vorlefan/prisma-backup popularity was classified as not popular.
We found that @vorlefan/prisma-backup 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.