
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@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.
The npm package @prisma-extensions/find-or-create receives a total of 4 weekly downloads. As such, @prisma-extensions/find-or-create popularity was classified as not popular.
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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.