Skip to content

DieHard073055/supabase-hello-world

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Supabase Hello World

This project serves as a simple Hello World example to illustrate how to connect to a Supabase database, perform an upsert operation to insert default data, and execute a select operation to retrieve all the data.

Usage Instructions

Installation

Follow the instructions on Supabase CLI Repo.

Starting Supabase

  1. Start supabase using the following command.
supabase start

⚠️ Do note: the above command is for the Native installation of Supabase. If you install using npm, prefix your command with npx. Eg: npx supabase start

This above command will start the Docker containers for the supabase stack. Once you are done pulling the containers and have seen the container IP addresses, proceed to the next step.

  1. Access the Supabase studio via the URL shown on the screen when you start the container.
  2. Record down the SUPABASE_URL and SUPABASE_ANON_KEY into your .env file. These will be used by the application to connect to the Supabase client.
  3. Happy developing!

Code Explanation

Importing modules

The connection.js file contains the main logic of the application. Here's a breakdown of its content:

First, we import the necessary modules and initialize a new Supabase client with the environment variables for the Supabase URL and ANON Key.

const { createClient } = require('@supabase/supabase-js')

require('dotenv').config()
const supabase = createClient(
  process.env.SUPABASE_URL,
  process.env.SUPABASE_ANON_KEY
)

const table_name = "countries"

Inserting

The insert_default_data function is responsible for inserting default data to our table using the 'upsert' method. In case of any errors during this operation, it logs the error to the console. On successful operation, it logs the inserted data.

const insert_default_data = async () => {
  const { data, error } = await supabase
    .from(table_name)
    .upsert(
      [
        { name: "UK" },
        { name: "US" },
        { name: "Africa" },
        { name: "Mexico" },
        { name: "Hungaria" },
        { name: "Zimbabwe" },
        { name: "Norway" },
      ])
  if (error) {
    console.error(error)
  }
  if (data) {
    console.log(data)
  }
}

Selecting

The select_all_data function retrieves all the records from the 'countries' table and logs them to the console. Errors, if any, are also logged to the console.

const select_all_data = async () => {
  let { data, error } = await supabase
    .from('countries')
    .select('name')

  if (error) {
    console.error(error)
  }
  if (data) {
    console.log(data)
  }
}

Start using your application

Finally, we call the select_all_data function inside the main function to start the application.

const main = async () => {
  await select_all_data()
}

main().then(console.log).catch(console.error)

logs from the code above

[
  { name: 'UK' },
  { name: 'US' },
  { name: 'Africa' },
  { name: 'Mexico' },
  { name: 'Hungaria' },
  { name: 'Zimbabwe' },
  { name: 'Norway' }
]

Project Structure Here's the directory structure of the project:

.
├── LICENSE
├── README.md
├── connection.js
├── package-lock.json
├── package.json
└── supabase
    ├── config.toml
    ├── functions
    ├── migrations
    └── seed.sql

License

This project is licensed under the terms of the MIT license. For more information, see the LICENSE file.

Contributions

Contributions are welcome! Feel free to open a pull request.

Questions

If you have any questions or run into any issues, please open an issue in this repository.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published