This is a RESTful API Starter with a single Hello World API endpoint.
Install Encore:
brew install encoredev/tap/encore
curl -L https://encore.dev/install.sh | bash
iwr https://encore.dev/install.ps1 | iex
Create a local app from this template:
encore app create my-app-name --example=ts/hello-world
Run this command from your application's root folder:
encore run
To see that your app is running, you can ping the API.
curl http://localhost:4000/hello/World
While encore run
is running, open http://localhost:9400/ to access Encore's local developer dashboard.
Here you can see traces for all requests that you made, see your architecture diagram (just a single service for this simple example), and view API documentation in the Service Catalog.
To create a new microservice, add a file named encore.service.ts in a new directory.
The file should export a service definition by calling new Service
, imported from encore.dev/service
.
import { Service } from "encore.dev/service";
export default new Service("my-service");
Encore will now consider this directory and all its subdirectories as part of the service.
Learn more in the docs: https://encore.dev/docs/ts/primitives/services
Create a new .ts
file in your new service directory and write a regular async function within it. Then to turn it into an API endpoint, use the api
function from the encore.dev/api
module. This function designates it as an API endpoint.
Learn more in the docs: https://encore.dev/docs/ts/primitives/defining-apis
Calling API endpoints between services looks like regular function calls with Encore.ts.
The only thing you need to do is import the service you want to call from ~encore/clients
and then call its API endpoints like functions.
In the example below, we import the service hello
and call the ping
endpoint using a function call to hello.ping
:
import { hello } from "~encore/clients"; // import 'hello' service
export const myOtherAPI = api({}, async (): Promise<void> => {
const resp = await hello.ping({ name: "World" });
console.log(resp.message); // "Hello World!"
});
Learn more in the docs: https://encore.dev/docs/ts/primitives/api-calls
To create a database, import encore.dev/storage/sqldb
and call new SQLDatabase
, assigning the result to a top-level variable. For example:
import { SQLDatabase } from "encore.dev/storage/sqldb";
// Create the todo database and assign it to the "db" variable
const db = new SQLDatabase("todo", {
migrations: "./migrations",
});
Then create a directory migrations
inside the service directory and add a migration file 0001_create_table.up.sql
to define the database schema. For example:
CREATE TABLE todo_item (
id BIGSERIAL PRIMARY KEY,
title TEXT NOT NULL,
done BOOLEAN NOT NULL DEFAULT false
-- etc...
);
Once you've added a migration, restart your app with encore run
to start up the database and apply the migration. Keep in mind that you need to have Docker installed and running to start the database.
Learn more in the docs: https://encore.dev/docs/ts/primitives/databases
There are many more features to explore in Encore.ts, for example:
See the self-hosting instructions for how to use encore build docker
to create a Docker image and configure it.
Deploy your application to a free staging environment in Encore's development cloud using git push encore
:
git add -A .
git commit -m 'Commit message'
git push encore
You can also open your app in the Cloud Dashboard to integrate with GitHub, or connect your AWS/GCP account, enabling Encore to automatically handle cloud deployments for you.
Follow these steps to link your app to GitHub:
To run tests, configure the test
command in your package.json
to the test runner of your choice, and then use the command encore test
from the CLI. The encore test
command sets up all the necessary infrastructure in test mode before handing over to the test runner. Learn more
encore test