From c9ee500b00ef57ff9d46e582cb5e1854208c133b Mon Sep 17 00:00:00 2001 From: WhyK Date: Wed, 24 Aug 2022 12:56:48 +0900 Subject: [PATCH] docs: update README --- README.md | 6 +++--- README_JP.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c4dd700..42119a6 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ DB module in JSON format created with Deno. - [x] Asynchronous support - [x] Partial search with regular expressions -If you don't see a feature you think you need, please let us know what you want in [Issue](https://github.com/windchime-yk/bracesdb/issues/new). It will be used as a reference for implementation. +If you don't see a feature you think you need, please let us know what you want in [Issue](https://github.com/rwl-dev/bracesdb/issues/new). It will be used as a reference for implementation. ## API When creating a file, you must add `--allow-read` and `--allow-write` at execution to read and write the file. @@ -32,7 +32,7 @@ When creating a file, you must add `--allow-read` and `--allow-write` at executi `filename` is the DB name. Default name is `main`. ``` typescript -import { BracesDB } from "https://deno.land/x/bracesdb/mod.ts"; +import { BracesDB } from "https://deno.land/x/bracesdb@/mod.ts"; interface DB { name?: string; @@ -80,7 +80,7 @@ const dataAll = db.find(); ### Test Execute the following command. ``` bash -$ git clone git@github.com:windchime-yk/bracesdb.git +$ git clone https://github.com/rwl-dev/bracesdb.git $ cd path/to/bracesdb $ deno task test diff --git a/README_JP.md b/README_JP.md index 36efe6d..dcfce8e 100644 --- a/README_JP.md +++ b/README_JP.md @@ -21,7 +21,7 @@ Denoで作られたJSON形式のDBモジュール。 - [x] 非同期対応 - [x] 正規表現による部分検索 -もし必要だと思う機能がなければ、[Issues](https://github.com/windchime-yk/bracesdb/issues/new)で教えてください。参考にします。 +もし必要だと思う機能がなければ、[Issues](https://github.com/rwl-dev/bracesdb/issues/new)で教えてください。参考にします。 ## API ファイルを作成する保存形式では、ファイルの読み込みと書き込みを行なうため、実行の際に`--allow-read`と`--allow-write`をつけてください。 @@ -31,7 +31,7 @@ Denoで作られたJSON形式のDBモジュール。 `folder`はDBファイルを格納するフォルダのパスです。デフォルトではプロジェクトルートに生成されます。 `filename`はDBファイルの名前です。デフォルトは`main`です。 ``` typescript -import { BracesDB } from "https://deno.land/x/bracesdb/mod.ts"; +import { BracesDB } from "https://deno.land/x/bracesdb@/mod.ts"; interface DB { name?: string; @@ -80,7 +80,7 @@ const dataAll = db.find(); ## テスト 以下のコマンドを実行してください。 ``` bash -$ git clone git@github.com:windchime-yk/bracesdb.git +$ git clone https://github.com/rwl-dev/bracesdb.git $ cd path/to/bracesdb $ deno task test