Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
benallfree authored Dec 4, 2024
1 parent 80e3702 commit 39f6440
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ PocketBase is an open source backend consisting of embedded database (SQLite) wi
- [Official Packages](#official-packages)
- [Major Community Projects](#major-community-projects)
- [JSVM Plugins](#jsvm-plugins)
- [Go Plugins](#go-plugins)
- [React](#react)
- [Svelte](#svelte)
- [Vue](#vue)
Expand All @@ -21,7 +22,6 @@ PocketBase is an open source backend consisting of embedded database (SQLite) wi
- [Node.js](#nodejs)
- [Unofficial PocketBase Clients (SDKs)](#unofficial-pocketbase-clients-sdks)
- [Self Hosting](#self-hosting)
- [Native Go Plugins](#native-go-plugins)
- [TypeScript tools](#typescript-tools)
- [SQLite tools](#sqlite-tools)
- [Other tools](#other-tools)
Expand Down Expand Up @@ -55,11 +55,16 @@ PocketBase is an open source backend consisting of embedded database (SQLite) wi

## JSVM Plugins

| Name | Description | Pocodex Installation Command | |
| ----------- | -------------------- | -------------------------------------------------------------- | ----------------------------------------------------------------------------------- |
| OTP | One-Time Passwords | [pocketbase-otp](https://github.com/benallfree/pocketbase-otp) | ![GitHub Repo stars](https://img.shields.io/github/stars/benallfree/pocketbase-otp) |
| PocketPages | Server-side JS pages | [pocketpages](https://github.com/benallfree/pocketpages) | ![GitHub Repo stars](https://img.shields.io/github/stars/benallfree/pocketpages) |
| Presigned URLs | Serve file uploads from presigned S3 URLs | [pocketbase-presigned-urls](https://github.com/benallfree/pocketbase-presigned-urls) | ![GitHub Repo stars](https://img.shields.io/github/stars/benallfree/pocketbase-presigned-urls) |
* [pocketbase-otp](https://github.com/benallfree/pocketbase-otp) - One-Time Passwords for <=v0.22.* ![GitHub Repo stars](https://img.shields.io/github/stars/benallfree/pocketbase-otp)

Check failure on line 58 in README.md

View workflow job for this annotation

GitHub Actions / markdown

Unordered list style

README.md:58:1 MD004/ul-style Unordered list style [Expected: dash; Actual: asterisk] https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md004.md
* [pocketpages](https://github.com/benallfree/pocketpages) - Server-side EJS pages for PocketBase. ![GitHub Repo stars](https://img.shields.io/github/stars/benallfree/pocketpages)

Check failure on line 59 in README.md

View workflow job for this annotation

GitHub Actions / markdown

Unordered list style

README.md:59:1 MD004/ul-style Unordered list style [Expected: dash; Actual: asterisk] https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md004.md
* [pocketbase-presigned-urls](https://github.com/benallfree/pocketbase-presigned-urls) - Serve file uploads from presigned S3 URLs. ![GitHub Repo stars](https://img.shields.io/github/stars/benallfree/pocketbase-presigned-urls)

Check failure on line 60 in README.md

View workflow job for this annotation

GitHub Actions / markdown

Unordered list style

README.md:60:1 MD004/ul-style Unordered list style [Expected: dash; Actual: asterisk] https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md004.md

## Go Plugins

- [Telegram auth](https://github.com/iamelevich/pocketbase-plugin-telegram-auth) - Add Telegram auth (Widget button and WebApp). ![GitHub Repo stars](https://img.shields.io/github/stars/iamelevich/pocketbase-plugin-telegram-auth)
- [Ngrok](https://github.com/iamelevich/pocketbase-plugin-ngrok) - Expose local PocketBase to the internet with ngrok. ![GitHub Repo stars](https://img.shields.io/github/stars/iamelevich/pocketbase-plugin-ngrok)
- [Proxy](https://github.com/iamelevich/pocketbase-plugin-proxy) - Proxy requests to another other host. Can be useful when you want to use separate server as frontend (like Next.js), but serve everything with same port. ![GitHub Repo stars](https://img.shields.io/github/stars/iamelevich/pocketbase-plugin-proxy)
- [Webhooks](https://gist.github.com/cugu/9e74f75dcad3df74370c71ff3c02085a) - Add webhook support in the admin UI to send `create`, `update` and `delete` events on selected collections via POST request to other systems.

## React

Expand Down Expand Up @@ -123,13 +128,6 @@ PocketBase is an open source backend consisting of embedded database (SQLite) wi
- [PocketBase Docker](https://github.com/kdpuvvadi/pocketbase) - Docker images supporting multiple architectures and updated with latest PocketBase releases. ![GitHub Repo stars](https://img.shields.io/github/stars/kdpuvvadi/pocketbase)
- [PocketBase on Dokku](https://github.com/blockshiftnetwork/dokku-pocketbase) - Deploy PocketBase instances on Dokku effortlessly. ![GitHub Repo stars](https://img.shields.io/github/stars/blockshiftnetwork/dokku-pocketbase)

## Native Go Plugins

- [Telegram auth](https://github.com/iamelevich/pocketbase-plugin-telegram-auth) - Add Telegram auth (Widget button and WebApp). ![GitHub Repo stars](https://img.shields.io/github/stars/iamelevich/pocketbase-plugin-telegram-auth)
- [Ngrok](https://github.com/iamelevich/pocketbase-plugin-ngrok) - Expose local PocketBase to the internet with ngrok. ![GitHub Repo stars](https://img.shields.io/github/stars/iamelevich/pocketbase-plugin-ngrok)
- [Proxy](https://github.com/iamelevich/pocketbase-plugin-proxy) - Proxy requests to another other host. Can be useful when you want to use separate server as frontend (like Next.js), but serve everything with same port. ![GitHub Repo stars](https://img.shields.io/github/stars/iamelevich/pocketbase-plugin-proxy)
- [Webhooks](https://gist.github.com/cugu/9e74f75dcad3df74370c71ff3c02085a) - Add webhook support in the admin UI to send `create`, `update` and `delete` events on selected collections via POST request to other systems.

## TypeScript tools

- [pocketbase-jsvm](https://github.com/benallfree/pocketbase-jsvm) - JSVM typings. ![GitHub Repo stars](https://img.shields.io/github/stars/benallfree/pocketbase-jsvm)
Expand Down

0 comments on commit 39f6440

Please sign in to comment.