https://github.com/microcmsio/microcms-field-extension
Libraries for create field extension
https://github.com/microcmsio/microcms-field-extension
Last synced: 11 months ago
JSON representation
Libraries for create field extension
- Host: GitHub
- URL: https://github.com/microcmsio/microcms-field-extension
- Owner: microcmsio
- Created: 2022-04-25T23:52:53.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-07-02T08:29:02.000Z (11 months ago)
- Last Synced: 2025-07-10T15:47:42.235Z (11 months ago)
- Language: TypeScript
- Homepage: https://microcms-field-extension-address-from-zipcode.vercel.app
- Size: 3.1 MB
- Stars: 12
- Watchers: 4
- Forks: 6
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# microcms-field-extension-sdk
This repository contains libraries for create [field extension](https://document.microcms.io/manual/field-extension).
This repository managed as monorepo by [`turborepo`](https://turborepo.org/docs/getting-started).
## Directory structure
- [`microcms-field-extension-api`](./packages/api/): This library do not depend framework (eg React, Vue.js ...)
- [`microcms-field-extension-react`](./packages/react/): This library is useful when using React
- [`microcms-cra-template`](./packages/cra-template/): This directory is template for [`create-react-app`](https://create-react-app.dev/)
- [`examples/react`](./examples/react/): React example
- [`examples/nextjs`](./examples/nextjs/): Next.js example
## Development
Install dependency.
```sh
npm ci
```
Test and build.
```sh
npm run format && npm run lint && npm run build
```