Docs
Overview
Getting Started
Getting Started
In this chapter, I’ll introduce how to create a backend project based on dobs.
#Downloading a Template
You can create a project using the dobs CLI tool:
Terminal
npm create dobsAvailable templates:
- TypeScript (recommended)
- JavaScript
#Manual Installation
You can also install dobs manually in an existing project.
- Install the dobs module.
Terminal
yarn add dobs-
Create the
/appdirectory. -
Create
dobs.config.ts(optional).
Typescript
import { defineConfig } from "dobs";
export default defineConfig({
// ...
});- Have fun!