如何在React中连接node js和supabase

ny6fqffe  于 2023-03-17  发布在  Node.js
关注(0)|答案(2)|浏览(124)

如何连接节点js和supabase。我已经完成了前端使用react。我需要得到图像作为输入从用户和存储在数据库中。我需要获取这些图像和显示在卡。
我不知道,因为我是新来的。

g9icjywg

g9icjywg1#

您需要使用@supabase/supabase-js包来连接supabase数据库。

npm install @supabase/supabase-js

dbConfig.ts

import { createClient } from '@supabase/supabase-js'
export const supabase = createClient('https://<project>.supabase.co', '<your-anon-key>')

有关更多详细信息refer supabase tutorial

5t7ly7z5

5t7ly7z52#

您将在index.js中写入此内容

const mongoose = require('mongoose');

const databaseName = 'products';
const username = 'admin';
const password = '1234';
 
mongoose.connect(`mongodb+srv:// ${username}:${password} .net/${databaseName}`,

e=() =>{
if(e){console.log(e);}else{console.log("connected to database");}}
);

在终端中写入此部分如果以这种方式使用,则不需要将MongoDB程序下载到设备。

$ npm install mongoose

相关问题