Skip to content
This repository was archived by the owner on Jan 20, 2025. It is now read-only.

Tradução para creating-plugins.md #76

Merged
merged 1 commit into from
Nov 28, 2019
Merged
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: Criando Plugins
---

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).
Você pode querer criar e talvez publicar um plugin que ainda não existe, ou pode estar curioso para saber mais sobre a anatomia de um plugin do Gatsby (estrutura de arquivos, etc.).

## Core concepts
## Conceitos principais

- 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/)
- Cada plugin do Gatsby pode ser criado como um pacote npm ou como um [plugin local](/docs/creating-a-local-plugin/)
- É necessário um `package.json`
- Os plugins implementam as APIs do Gatsby para [Node](/docs/node-apis/), a [renderização do lado do servidor](/docs/ssr-apis/), e o [navegador](/docs/browser-apis/)

This section of the docs includes the following guides:
Esta seção dos documentos inclui os seguintes guias:

<GuideList slug={props.slug} />