This is a multi-user blogging application with a serverless GraphQL API powered by Slicknode.
To launch the backend in the Slicknode cloud, clone the repository and deploy it
with the Slicknode CLI (npm install -g slicknode@latest
):
git clone https://github.com/slicknode/example-blog-api.git
cd ./example-blog-api
slicknode deploy
To add content via the CMS, open the console from within the project directory:
slicknode console
To explore the GraphQL API:
slicknode playground
You can connect any client application to this backend via the GraphQL API. (React, Vue, Angular, iOS etc.)
To learn how to extend and customize this backend, checkout the Slicknode documentation.
You can for example just change the schema of the blog (modules/blog/schema.graphql
) and redeploy
the changes to the cloud:
slicknode deploy
Some more pointers for getting started: