@phenyl/mongodb
v4.1.0
Published
MongoDB client.
Downloads
695
Keywords
Readme
@phenyl/mongodb
MongoDB client.
usage
See here if you use phenylMongoDbClient on your server.
import { PhenylMongoDbClient, connect } from "@phenyl/mongodb"
const connection = await connect({
url: "mongodb://localhost:27017",
dbname: "mydb",
});
const phenylMongoDbClient = new PhenylMongoDbClient(connection)
await phenylMongoDbClient.insertAndGet({ entityName: "user", value: { id: "user" } })
const { entity: user } = phenylMongoDbClient.get({ entityName: "user", id: "user" })