Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: translate docs/creating-plugins #345

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions docs/docs/creating-plugins.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
title: Creating Plugins
title: プラグインの作成
---

You may be looking to build and perhaps publish a plugin that doesn't exist yet, or you may just be curious to know more about the anatomy of a Gatsby plugin (file structure, etc).
まだ存在しないプラグインをビルドして公開しようとしたり、Gatsby プラグインの構造(ファイル構造など)についてもっと知りたいということがあると思います。

## Core concepts
## コアコンセプト

- Each Gatsby plugin can be created as an npm package or as a [local plugin](/docs/creating-a-local-plugin/)
- A `package.json` is required
- Plugins implement the Gatsby APIs for [Node](/docs/node-apis/), [server-side rendering](/docs/ssr-apis/), and the [browser](/docs/browser-apis/)
- Gatsby プラグインは npm パッケージ、または[ローカルプラグイン](/docs/creating-a-local-plugin/)として作成できます。
- `package.json` が必要です。
- プラグインは[ノード](/docs/node-apis/)、[サーバーサイドレンダリング](/docs/ssr-apis/)、および[ブラウザ](/docs/browser-apis/)用の Gatsby API を実装します。

This section of the docs includes the following guides:
ドキュメントのこのセクションでは以下のガイドを含んでいます:

<GuideList slug={props.slug} />