Example of using FaunaDB with Netlify functions
Expand Table of Contents
This application is using React for the frontend, Netlify Functions for API calls, and FaunaDB as the backing database.
Click the Deploy to Netlify Button
-
Clone down the repository
git clone [email protected]:netlify/netlify-faunadb-example.git
-
Install the dependencies
npm install
-
Bootstrap your FaunaDB table
Create the fauna db instance
netlify addons:create fauna
Claim your new fauna db instance
netlify addons:auth fauna
Automatically create your table in fauna. Alternatively you can create in fauna UI.
npm run bootstrap
-
Run project locally & iterate on serverless functions
npm start
This application is using React for the frontend, Netlify Functions for API calls, and FaunaDB as the backing database.
We are going to explore how to get up and running with netlify functions and how to deploy your own serverless backend.
So, lets dive right in!
We are using React for this demo app, but you can use whatever you want to manage the frontend.
Into VueJS? Awesome use that.
Miss the days of jQuery? Righto jQuery away!
Fan of vanillaJS? By all means, have at it!
-
Install create react app
npm install create-react-app -g
-
Create the react app!
create-react-app my-app
-
The react app is now setup!
# change directories into my-app cd my-app # start the app npm start # install faunadb npm install faunadb
We are using FaunaDB to hold and store all of our todo data.
First add the fauna
add-on
netlify addons:create fauna
Then login and claim your new database
netlify addons:auth fauna
The fauna environment variables are automatically injected into your serverless functions and in netlify dev
You have the option of creating your own fauna account.
Head over to https://app.fauna.com/sign-up to create a free Fauna Account.
-
Sign up
-
Create a key
-
Name your key and create
-
Copy this API key for later use, or Deploy to Netlify Button and plugin this API key.
-
Create your FaunaDB database
Set the FaunaDB API key locally in your terminal
# on mac export FAUNADB_SERVER_SECRET=YourFaunaDBKeyHere
Now, lets create a function for our app and wire that up to run locally.
The functions in our project are going to live in a /functions
folder. You can set this to whatever you'd like but we like the /functions
convention.
All AWS Lambda functions have the following signature:
exports.handler = (event, context) => {
// "event" has informatiom about the path, body, headers etc of the request
console.log('event', event)
// "context" has information about the lambda environment and user details
console.log('context', context)
// Returns a response back to the caller
return {
statusCode: 200,
body: JSON.stringify({
data: '⊂◉‿◉つ'
})
}
}
We are going to use the faunadb
npm package to connect to our Fauna Database and create an item
Lets rock and roll.
-
Create a
./functions
directory# make functions directory mdkir functions
-
Add our
dev
&build
commandsTo run the functions locally we want to run
netlify dev
This will automatically run our new functions and connect them to our new fauna DB
Your
package.json
should look like{ "name": "netlify-fauna", "scripts": { "start": "react-scripts start", "dev": "netlify dev" } }
Add the functions block to your
netlify.toml
file[build] functions = "functions" # This will be run the site build command = "npm run build" # This is the directory is publishing to netlify's CDN publish = "build"
-
Install FaunaDB and write the create function
We are going to be using the
faunadb
npm module to call into our todos index in FaunaDB.So install it in the project
npm install faunadb --save
Then create a new function file in
/functions
calledtodos-create.js
/* code from functions/todos-create.js */ /* Import faunaDB sdk */ const faunadb = require('faunadb') /* configure faunaDB Client with our secret */ const q = faunadb.query const client = new faunadb.Client({ secret: process.env.FAUNADB_SERVER_SECRET }) /* export our lambda function as named "handler" export */ exports.handler = async (event, context) => { /* parse the string body into a useable JS object */ const data = JSON.parse(event.body) console.log('Function `todo-create` invoked', data) const todoItem = { data: data } /* construct the fauna query */ return client.query(q.Create(q.Ref('classes/todos'), todoItem)) .then((response) => { console.log('success', response) /* Success! return the response with statusCode 200 */ return { statusCode: 200, body: JSON.stringify(response) } }).catch((error) => { console.log('error', error) /* Error! return the error with statusCode 400 */ return { statusCode: 400, body: JSON.stringify(error) } }) }
Inside of the react app, we can now wire up the /.netlify/functions/todos-create
endpoint to an AJAX request.
// Function using fetch to POST to our API endpoint
function createTodo(data) {
return fetch('/.netlify/functions/todos-create', {
body: JSON.stringify(data),
method: 'POST'
}).then(response => {
return response.json()
})
}
// Todo data
const myTodo = {
title: 'My todo title',
completed: false,
}
// create it!
createTodo(myTodo).then((response) => {
console.log('API response', response)
// set app state
}).catch((error) => {
console.log('API error', error)
})
Requests to /.netlify/function/[Function-File-Name]
will work seamlessly on localhost and on the live site because we are using the local proxy with webpack.
We will be skipping over the rest of the frontend parts of the app because you can use whatever framework you'd like to build your application.
All the demo React frontend code is available here
So far we have created our todo-create
function done and we've seen how we make requests to our live function endpoints. It's now time to add the rest of our CRUD functions to manage our todos.
-
Read Todos by ID
Then create a new function file in
/functions
calledtodos-read.js
/* code from functions/todos-read.js */ /* Import faunaDB sdk */ const faunadb = require('faunadb') const getId = require('./utils/getId') const q = faunadb.query const client = new faunadb.Client({ secret: process.env.FAUNADB_SERVER_SECRET }) exports.handler = (event, context) => { const id = getId(event.path) console.log(`Function 'todo-read' invoked. Read id: ${id}`) return client.query(q.Get(q.Ref(`classes/todos/${id}`))) .then((response) => { console.log('success', response) return { statusCode: 200, body: JSON.stringify(response) } }).catch((error) => { console.log('error', error) return { statusCode: 400, body: JSON.stringify(error) } }) }
-
Read All Todos
Then create a new function file in
/functions
calledtodos-read-all.js
/* code from functions/todos-read-all.js */ /* Import faunaDB sdk */ const faunadb = require('faunadb') const q = faunadb.query const client = new faunadb.Client({ secret: process.env.FAUNADB_SERVER_SECRET }) exports.handler = (event, context) => { console.log('Function `todo-read-all` invoked') return client.query(q.Paginate(q.Match(q.Ref('indexes/all_todos')))) .then((response) => { const todoRefs = response.data console.log('Todo refs', todoRefs) console.log(`${todoRefs.length} todos found`) // create new query out of todo refs. http://bit.ly/2LG3MLg const getAllTodoDataQuery = todoRefs.map((ref) => { return q.Get(ref) }) // then query the refs return client.query(getAllTodoDataQuery).then((ret) => { return { statusCode: 200, body: JSON.stringify(ret) } }) }).catch((error) => { console.log('error', error) return { statusCode: 400, body: JSON.stringify(error) } }) }
-
Update todo by ID
Then create a new function file in
/functions
calledtodos-update.js
/* code from functions/todos-update.js */ const faunadb = require('faunadb') const getId = require('./utils/getId') const q = faunadb.query const client = new faunadb.Client({ secret: process.env.FAUNADB_SERVER_SECRET }) exports.handler = (event, context) => { const data = JSON.parse(event.body) const id = getId(event.path) console.log(`Function 'todo-update' invoked. update id: ${id}`) return client.query(q.Update(q.Ref(`classes/todos/${id}`), {data})) .then((response) => { console.log('success', response) return { statusCode: 200, body: JSON.stringify(response) } }).catch((error) => { console.log('error', error) return { statusCode: 400, body: JSON.stringify(error) } }) }
-
Delete by ID
Then create a new function file in
/functions
calledtodos-delete.js
/* code from functions/todos-delete.js */ /* Import faunaDB sdk */ const faunadb = require('faunadb') const getId = require('./utils/getId') const q = faunadb.query const client = new faunadb.Client({ secret: process.env.FAUNADB_SERVER_SECRET }) exports.handler = async (event, context) => { const id = getId(event.path) console.log(`Function 'todo-delete' invoked. delete id: ${id}`) return client.query(q.Delete(q.Ref(`classes/todos/${id}`))) .then((response) => { console.log('success', response) return { statusCode: 200, body: JSON.stringify(response) } }).catch((error) => { console.log('error', error) return { statusCode: 400, body: JSON.stringify(error) } }) }
-
Delete batch todos
Then create a new function file in
/functions
calledtodos-delete-batch.js
/* code from functions/todos-delete-batch.js */ /* Import faunaDB sdk */ const faunadb = require('faunadb') const q = faunadb.query const client = new faunadb.Client({ secret: process.env.FAUNADB_SERVER_SECRET }) exports.handler = async (event, context) => { const data = JSON.parse(event.body) console.log('data', data) console.log('Function `todo-delete-batch` invoked', data.ids) // construct batch query from IDs const deleteAllCompletedTodoQuery = data.ids.map((id) => { return q.Delete(q.Ref(`classes/todos/${id}`)) }) // Hit fauna with the query to delete the completed items return client.query(deleteAllCompletedTodoQuery) .then((response) => { console.log('success', response) return { statusCode: 200, body: JSON.stringify(response) } }).catch((error) => { console.log('error', error) return { statusCode: 400, body: JSON.stringify(error) } }) }
After we deploy all these functions, we will be able to call them from our frontend code with these fetch calls:
/* Frontend code from src/utils/api.js */
/* Api methods to call /functions */
const create = (data) => {
return fetch('/.netlify/functions/todos-create', {
body: JSON.stringify(data),
method: 'POST'
}).then(response => {
return response.json()
})
}
const readAll = () => {
return fetch('/.netlify/functions/todos-read-all').then((response) => {
return response.json()
})
}
const update = (todoId, data) => {
return fetch(`/.netlify/functions/todos-update/${todoId}`, {
body: JSON.stringify(data),
method: 'POST'
}).then(response => {
return response.json()
})
}
const deleteTodo = (todoId) => {
return fetch(`/.netlify/functions/todos-delete/${todoId}`, {
method: 'POST',
}).then(response => {
return response.json()
})
}
const batchDeleteTodo = (todoIds) => {
return fetch(`/.netlify/functions/todos-delete-batch`, {
body: JSON.stringify({
ids: todoIds
}),
method: 'POST'
}).then(response => {
return response.json()
})
}
export default {
create: create,
readAll: readAll,
update: update,
delete: deleteTodo,
batchDelete: batchDeleteTodo
}
I hope you have enjoyed this tutorial on building your own CRUD API using Netlify serverless functions and FaunaDB.
As you can see, functions can be extremely powerful when combined with a cloud database!
The sky is the limit on what you can build with the JAM stack and we'd love to hear about what you make.
Next Steps
This example can be improved with users/authentication. Next steps to build out the app would be:
- Add in the concept of users for everyone to have their own todo list
- Wire up authentication using Netlify Identity JWTs
- Add in due dates to todos and wire up Functions to notify users via email/SMS
- File for IPO?