Open7

supabaseでアプリを作ってみる

starnishistarnishi

supabase
https://supabase.com

Firebaseと同じBaaSで、DBにRDBのPostgresを採用している。

  • Database
  • Authentication
  • Storage
  • Edge Functions

あと

  • Realtime database
starnishistarnishi

エラーになる。

npm init @vitejs/app supabase-vue-3 --template vue
npx: 7個のパッケージを2.056秒でインストールしました。

@vitejs/create-app is deprecated, use npm init vite instead

internal/modules/cjs/loader.js:1102
      throw new ERR_REQUIRE_ESM(filename, parentPath, packageJsonPath);
      ^

Error [ERR_REQUIRE_ESM]: Must use import to load ES Module: /Users/star_nishi/.npm/_npx/96577/lib/node_modules/@vitejs/create-app/node_modules/create-vite/index.js
require() of ES modules is not supported.
require() of /Users/star_nishi/.npm/_npx/96577/lib/node_modules/@vitejs/create-app/node_modules/create-vite/index.js from /Users/star_nishi/.npm/_npx/96577/lib/node_modules/@vitejs/create-app/index.js is an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which defines all .js files in that package scope as ES modules.
Instead rename /Users/star_nishi/.npm/_npx/96577/lib/node_modules/@vitejs/create-app/node_modules/create-vite/index.js to end in .cjs, change the requiring code to use import(), or remove "type": "module" from /Users/star_nishi/.npm/_npx/96577/lib/node_modules/@vitejs/create-app/node_modules/create-vite/package.json.

    at new NodeError (internal/errors.js:322:7)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1102:13)
    at Module.load (internal/modules/cjs/loader.js:950:32)
    at Function.Module._load (internal/modules/cjs/loader.js:790:12)
    at Module.require (internal/modules/cjs/loader.js:974:19)
    at require (internal/modules/cjs/helpers.js:101:18)
    at Object.<anonymous> (/Users/star_nishi/.npm/_npx/96577/lib/node_modules/@vitejs/create-app/index.js:43:1)
    at Module._compile (internal/modules/cjs/loader.js:1085:14)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1114:10)
    at Module.load (internal/modules/cjs/loader.js:950:32) {
  code: 'ERR_REQUIRE_ESM'
}
starnishistarnishi
nvm install --lts
nvm use --lts

でnodeの最新バージョンを使うようにした。
けど、結果的に同じエラーになった

starnishistarnishi
yarn create vite supabase-vue-3 --template vue

としたら動いた。viteのコマンドが変わっていたからか。

starnishistarnishi

Quickstartの記載が古くて、supabase-studioに記載されているサンプルを見ながら進めている。