Skip to content

Commit

Permalink
node:をコラムに移動
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Jul 21, 2024
1 parent 75211ce commit 4d8a909
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions source/use-case/nodecli/md-to-html/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,13 @@ $ node main.js --gfm sample.md
これでMarkdown変換の設定をコマンドライン引数で与えられるようになりました。
次のセクションではアプリケーションのコードを整理し、最後にユニットテストを導入します。

### [コラム] `node:` prefix {#node-prefix}

Node.jsの標準モジュールは、`node:util``node:fs`のように`node:`というプリフィックスがモジュール名についています。
この`node:`プリフィックスは後から導入された仕組みであるため、`util``fs`のようなプリフィックスなしでもモジュールを読み込むことができます。

しかしながら、`node:`プリフィックスがあることでnpmからインストールしたサードパーティ製のモジュールとの区別が明確になるため、付けておくことが推奨されます。

## このセクションのチェックリスト {#section-checklist}

- markedパッケージを使ってMarkdown文字列をHTML文字列に変換した
Expand Down

0 comments on commit 4d8a909

Please # to comment.