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.
@prisma-extensions/find-or-create
Advanced tools
Simplify your development experience by finding or creating records with a function.
@prisma-extensions/factory
- Create factories@prisma-extensions/msoft-delete
- Enable a deletedAt
field.@prisma-extensions/truncate
- Truncatemodel.$allModels
you can't get the model the method is being acted on.model.$allModels
you can't get the types of the model the method is being acted on.@prisma-extensions/truncate
const xprisma = new PrismaClient()
.$extends(factoryExtension)
.$extends(truncateExtension)
const UserFactory = xprisma.user.createFactory({
firstName: "Jane",
lastName: "Doe",
})
describe("Post", () => {
describe("Standard" () => {
afterEach(async () => {
await xprisma.$truncate()
})
test("example", async () => {
const user = UserFactory.build()
const post = await PostFactory.create({
title: "Foo",
content: "Bar",
author: {
create: user,
},
})
// ...
})
})
// Tests should be isolated (use sparingly)
describe("Persistent Record", () => {
const user = UserFactory.create()
afterAll(async () => {
await xprisma.$truncate({ only: ["User"] })
})
afterEach(async () => {
await xprisma.$truncate({ exclude: ["User"] })
})
test("example", async () => {
const post = await PostFactory.create({
title: "Foo",
content: "Bar",
author: {
connect: { id: user.id },
},
})
// ...
})
})
})
Learn more about the power of Turborepo:
FAQs
Simplify your development experience by finding or creating records with a function.
We found that @prisma-extensions/find-or-create 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.