- Notifications
You must be signed in to change notification settings - Fork2.9k
Open Source realtime backend in 1 file
License
pocketbase/pocketbase
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
PocketBase is an open source Go backend that includes:
- embedded database (SQLite) withrealtime subscriptions
- built-infiles and users management
- convenientAdmin dashboard UI
- and simpleREST-ish API
For documentation and examples, please visithttps://pocketbase.io/docs.
Warning
Please keep in mind that PocketBase is still under active developmentand therefore full backward compatibility is not guaranteed before reaching v1.0.0.
The easiest way to interact with the PocketBase Web APIs is to use one of the official SDK clients:
- JavaScript -pocketbase/js-sdk (Browser, Node.js, React Native)
- Dart -pocketbase/dart-sdk (Web, Mobile, Desktop, CLI)
You could also check the recommendations inhttps://pocketbase.io/docs/how-to-use/.
You could download the prebuilt executable for your platform from theReleases page.Once downloaded, extract the archive and run./pocketbase serve in the extracted directory.
The prebuilt executables are based on theexamples/base/main.go file and comes with the JS VM plugin enabled by default which allows to extend PocketBase with JavaScript (for more details please refer toExtend with JavaScript).
PocketBase is distributed as a regular Go library package which allows you to buildyour own custom app specific business logic and still have a single portable executable at the end.
Here is a minimal example:
Install Go 1.23+ (if you haven't already)
Create a new project directory with the following
main.gofile inside it:package mainimport ("log""github.com/pocketbase/pocketbase""github.com/pocketbase/pocketbase/core")funcmain() {app:=pocketbase.New()app.OnServe().BindFunc(func(se*core.ServeEvent)error {// registers new "GET /hello" routese.Router.GET("/hello",func(re*core.RequestEvent)error {returnre.String(200,"Hello world!") })returnse.Next() })iferr:=app.Start();err!=nil {log.Fatal(err) }}
To init the dependencies, run
go mod init myapp && go mod tidy.To start the application, run
go run main.go serve.To build a statically linked executable, you can run
CGO_ENABLED=0 go buildand then start the created executable with./myapp serve.
For more details please refer toExtend with Go.
To build the minimal standalone executable, like the prebuilt ones in the releases page, you can simply rungo build inside theexamples/base directory:
- Install Go 1.23+ (if you haven't already)
- Clone/download the repo
- Navigate to
examples/base - Run
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build(https://go.dev/doc/install/source#environment) - Start the created executable by running
./base serve.
Note that the supported build targets by the pure Go SQLite driver at the moment are:
darwin amd64darwin arm64freebsd amd64freebsd arm64linux 386linux amd64linux armlinux arm64linux loong64linux ppc64lelinux riscv64linux s390xwindows 386windows amd64windows arm64PocketBase comes with mixed bag of unit and integration tests.To run them, use the standardgo test command:
gotest ./...Check also theTesting guide to learn how to write your own custom application tests.
If you discover a security vulnerability within PocketBase, please send an e-mail tosupport at pocketbase.io.
All reports will be promptly addressed and you'll be credited in the fix release notes.
PocketBase is free and open source project licensed under theMIT License.You are free to do whatever you want with it, even offering it as a paid service.
You could help continuing its development by:
PRs for new OAuth2 providers, bug fixes, code optimizations and documentation improvements are more than welcome.
But please refrain creating PRs fornew features without previously discussing the implementation details.PocketBase has aroadmap and I try to work on issues in specific order and such PRs often come in out of nowhere and skew all initial planning with tedious back-and-forth communication.
Don't get upset if I close your PR, even if it is well executed and tested. This doesn't mean that it will never be merged.Later we can always refer to it and/or take pieces of your implementation when the time comes to work on the issue (don't worry you'll be credited in the release notes).
About
Open Source realtime backend in 1 file
Topics
Resources
License
Contributing
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Uh oh!
There was an error while loading.Please reload this page.
