Connecting to Database
{
"imports":{
"MySQL": "https://deno.land/x/mysql/mod.ts",
"Postgres": "https://deno.land/x/postgresjs/mod.ts",
"MongoDB": "https://deno.land/x/mongo@<LatestVersion>/mod.ts",
}
}MySQL
// import {Client} from "https://deno.land/x/mysql/mod.ts";
import {Client} from "MySQL";
const client = await new Client().connect({
hostname: "127.0.0.1",
username: "root",
db: "users",
password: "pass",
});Postgres
MongoDB
Firebase
Last updated