https://github.com/narumincho/bson-editor
https://github.com/narumincho/bson-editor
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/narumincho/bson-editor
- Owner: narumincho
- License: mit
- Created: 2023-07-25T11:14:03.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-26T05:26:42.000Z (almost 2 years ago)
- Last Synced: 2025-01-23T10:30:44.942Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://bson-editor.deno.dev/
- Size: 549 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bson-editor
_under development_
## 参考
- [bson spec](https://bsonspec.org/)
- https://www.mongodb.com/resources/basics/json-and-bson
## start web server
```sh
deno run -A https://github.com/narumincho/bson-editor/blob/main/server/main.ts
```
## Development
### run vscodeExtension build script
```sh
deno run --check -A ./vscodeExtension/build.ts
```
### run client script build script
```sh
deno run --check -A ./server/build.ts
```
### run server
```sh
deno run --check --watch -A ./server/main.ts
```
### run example bson file generator
```sh
deno run --check --allow-write=./example/ ./example/generate.ts
```