Prisma
This app comes from Prisma's REST API Example and shows how to create a REST API using Express and Prisma Client and deploy it onto Unikraft Cloud.
It uses a SQLite database file with some initial dummy data which you can find at ./prisma/store.db.
To run it, follow these steps:
-
Install the
kraftCLI tool and a container runtime engine, for example Docker. -
Clone the
examplesrepository andcdinto theexamples/node18-prisma-rest-express/directory:
Code(bash)
Make sure to log into Unikraft Cloud by setting your token and a metro close to you.
This guide uses fra (Frankfurt, ๐ฉ๐ช):
Code(bash)
When done, invoke the following command to deploy this app on Unikraft Cloud:
Code(bash)
The output shows the instance address and other details:
Code(ansi)
In this case, the instance name is node18-prisma-hdof1 and the address is https://funky-sun-4bf8v7g9.fra.unikraft.app.
They're different for each run.
Use curl to test the REST API, such as the /users endpoint:
Code(bash)
Code(json)
You can list information about the instance by running:
Code(bash)
Code(text)
When done, you can remove the instance:
Code(bash)
If you would like to test the server locally before deploying to Unikraft Cloud, follow the instructions here.
Using the app
You can access the REST API of the server using the following endpoints:
Endpoints
GET /post/:id: Fetch a single post by itsidGET /feed?searchString={searchString}&take={take}&skip={skip}&orderBy={orderBy}: Fetch all published posts- Query Parameters
searchString(optional): This filters posts bytitleorcontenttake(optional): This specifies how many objects the list should returnskip(optional): This specifies how many of the returned objects in the list to skiporderBy(optional): The sort order for posts in either ascending or descending order. The value can eitherascordesc
- Query Parameters
GET /user/:id/drafts: Fetch user's drafts by theiridGET /users: Fetch all usersPOST /post: Create a new post- Body:
title: String(required): The title of the postcontent: String(optional): The content of the postauthorEmail: String(required): The email of the user that creates the post
- Body:
POST /signup: Create a new user- Body:
email: String(required): The email address of the username: String(optional): The name of the userpostData: PostCreateInput[](optional): The posts of the user
- Body:
PUT /publish/:id: Toggle the publish value of a post by itsidPUT /post/:id/views: Increases theviewCountof aPostby oneidDELETE /post/:id: Delete a post by itsid
Evolving the app
Evolving the app typically requires two steps:
- Migrate your database using Prisma Migrate
- Update your app code
For the following example scenario, assume you want to add a "profile" feature to the app where users can create a profile and write a short bio about themselves.
1. Migrate your database using Prisma Migrate
The first step is to add a new table, for example called Profile, to the database.
You can do this by adding a new model to your Prisma schema file file and then running a migration afterward:
Code
Once you've updated your data model, you can execute the changes against your database with the following command:
Code
This adds another migration to the prisma/migrations directory and creates the new Profile table in the database.
2. Update your app code
You can now use your PrismaClient instance to perform operations against the new Profile table.
Those operations can create API endpoints in the REST API.
2.1 Add the app programming interface endpoint to your app
Update your src/index.js file by adding a new endpoint to your API:
Code(js)
2.2 Testing out your new endpoint
Restart your app server and test out your new endpoint.
Create endpoint
/user/:id/profile: Create a new profile based on the user id- Body:
bio: String: The bio of the user
- Body:
Here are some more sample Prisma Client queries on the new Profile model:
Create a new profile for an existing user
Code(ts)
Create a new user with a new profile
Code(ts)
Update the profile of an existing user
Code(ts)
Switch to another database
If you want to try this example with another database than SQLite, you can adjust the database connection in prisma/schema.prisma by reconfiguring the datasource block.
Learn more about the different connection configurations in the docs.
PostgreSQL
For PostgreSQL, the connection address has the following structure:
Code
Here is an example connection string with a local PostgreSQL database:
Code
MySQL
For MySQL, the connection address has the following structure:
Code
Here is an example connection string with a local MySQL database:
Code
Microsoft structured query language server database
Here is an example connection string with a local Microsoft SQL Server database:
Code
MongoDB
Here is an example connection string with a local MongoDB database:
Code
Learn more
Use the --help option for detailed information on using Unikraft Cloud:
Code(bash)
Or visit the CLI Reference.