Serverless Database CRUD Example

  • Hey folks,

    I wrote a tutorial about how to create a serverless database crud example. The basic idea is to show how to create a simple serverless database and CRUD APIs using Netlify Functions & FaunaDB.

    The tutorial project structure looks like this:

    ├── README.md

    ├── configs

    │ └── webpack.functions.js

    ├── lambda

    │ ├── create.js

    │ ├── customers.js

    │ ├── delete.js

    │ ├── hello.js

    │ ├── read-all.js

    │ ├── read.js

    │ └── update.js

    ├── netlify.toml

    ├── package.json

    ├── src

    │ ├── customers

    │ │ ├── create.js

    │ │ ├── delete.js

    │ │ ├── read-all.js

    │ │ ├── read.js

    │ │ └── update.js

    │ ├── customers.js

    │ └── hello.js

    └── yarn.lock

    Any feedback is appreciated, cheers!