JavaScriptやNode.jsのアプリケーションからmicroCMSのAPIと簡単に通信できます。
公式ドキュメントの チュートリアルをご覧ください。
$ npm install microcms-js-sdk
または
$ yarn add microcms-js-sdk
Important
v3.0.0以上を使用する場合は、Node.jsのv18以上が必要です。
リリースページからmicrocms-js-sdk-x.y.z.tgz
をダウンロードして解凍してください。その後、お好みのサーバーにアップロードして使用してください。対象ファイルは ./dist/umd/microcms-js-sdk.js
です。
<script src="./microcms-js-sdk.js"></script>
外部プロバイダーが提供するURLを読み込んでご利用ください。
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/microcms-js-sdk.min.js"></script>
または
<script src="https://cdn.jsdelivr.net/npm/microcms-js-sdk/dist/umd/microcms-js-sdk.min.js"></script>
Warning
ホスティングサービス(cdn.jsdelivr.net)はmicroCMSとは関係ありません。本番環境でのご利用には、お客様のサーバーでのセルフホスティングをお勧めします。
const { createClient } = require('microcms-js-sdk'); // CommonJS
または
import { createClient } from 'microcms-js-sdk'; //ES6
<script>
const { createClient } = microcms;
</script>
// クライアントオブジェクトを作成します。
const client = createClient({
serviceDomain: 'YOUR_DOMAIN', // YOUR_DOMAINはXXXX.microcms.ioのXXXXの部分です。
apiKey: 'YOUR_API_KEY',
// retry: true // 最大2回まで再試行します。
});
以下の表は、microCMS JavaScript SDKの各メソッドがリスト形式のAPIまたはオブジェクト形式のAPI、どちらで使用できるかを示しています。
メソッド | リスト形式 | オブジェクト形式 |
---|---|---|
getList | ✔️ | |
getListDetail | ✔️ | |
getObject | ✔️ | |
getAllContentIds | ✔️ | |
getAllContents | ✔️ | |
create | ✔️ | |
update | ✔️ | ✔️ |
delete | ✔️ |
Note
- 「リスト形式」の✔️は、APIの型がリスト形式に設定されている場合に使用できるメソッドを示します。
- 「オブジェクト形式」の✔️は、APIの型がオブジェクト形式に設定されている場合に使用できるメソッドを示します。
getList
メソッドは、指定されたエンドポイントからコンテンツ一覧を取得するために使用します。
client
.getList({
endpoint: 'endpoint',
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
queries
プロパティを使用して、特定の条件に一致するコンテンツ一覧を取得できます。利用可能な各プロパティの詳細については、microCMSのドキュメントを参照してください。
client
.getList({
endpoint: 'endpoint',
queries: {
draftKey: 'abcd',
limit: 100,
offset: 1,
orders: 'createdAt',
q: 'こんにちは',
fields: 'id,title',
ids: 'foo',
filters: 'publishedAt[greater_than]2021-01-01T03:00:00.000Z',
depth: 1,
}
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
getListDetail
メソッドは、指定されたエンドポイントから、IDで指定された単一コンテンツを取得するために使用します。
client
.getListDetail({
endpoint: 'endpoint',
contentId: 'contentId',
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
queries
プロパティを使用して、特定の条件に一致する単一コンテンツを取得できます。利用可能な各プロパティの詳細については、microCMSのドキュメントを参照してください。
client
.getListDetail({
endpoint: 'endpoint',
contentId: 'contentId',
queries: {
draftKey: 'abcd',
fields: 'id,title',
depth: 1,
}
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
getObject
メソッドは、指定されたエンドポイントからオブジェクト形式のコンテンツを取得するために使用します。
client
.getObject({
endpoint: 'endpoint',
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
getAllContentIds
メソッドは、指定されたエンドポイントからコンテンツIDのみを全件取得するために使用します。
client
.getAllContentIds({
endpoint: 'endpoint',
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
filters
プロパティを使用することで、条件に一致するコンテンツIDを全件取得できます。
client
.getAllContentIds({
endpoint: 'endpoint',
filters: 'category[equals]uN28Folyn',
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
draftKey
プロパティを使用することで、下書き中のコンテンツのIDを全件取得できます。
client
.getAllContentIds({
endpoint: 'endpoint',
draftKey: 'draftKey',
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
alternateField
プロパティにフィールドIDを指定することで、コンテンツID以外のフィールドの値を全件取得できます。
client
.getAllContentIds({
endpoint: 'endpoint',
alternateField: 'url',
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
getAllContents
メソッドは、指定されたエンドポイントから、コンテンツを全件取得するために使用します。
client
.getAllContents({
endpoint: 'endpoint',
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
queries
プロパティを使用して、特定の条件に一致するすべてのコンテンツを取得できます。利用可能な各プロパティの詳細については、microCMSのドキュメントを参照してください。
client
.getAllContents({
endpoint: 'endpoint',
queries: { filters: 'createdAt[greater_than]2021-01-01T03:00:00.000Z', orders: '-createdAt' },
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
create
メソッドは指定されたエンドポイントにコンテンツを登録するために使用します。
client
.create({
endpoint: 'endpoint',
content: {
title: 'タイトル',
body: '本文',
},
})
.then((res) => console.log(res.id))
.catch((err) => console.error(err));
contentId
プロパティを使用することで、指定されたIDでコンテンツを登録できます。
client
.create({
endpoint: 'endpoint',
contentId: 'contentId',
content: {
title: 'タイトル',
body: '本文',
},
})
.then((res) => console.log(res.id))
.catch((err) => console.error(err));
isDraft
プロパティを使用することで、下書き中のステータスでコンテンツを登録できます。
client
.create({
endpoint: 'endpoint',
content: {
title: 'タイトル',
body: '本文',
},
// 有料プランから利用可能
// https://microcms.io/pricing
isDraft: true,
})
.then((res) => console.log(res.id))
.catch((err) => console.error(err));
contentId
プロパティとisDraft
プロパティを使用することで、指定されたIDかつ下書き中のステータスでコンテンツを登録できます。
client
.create({
endpoint: 'endpoint',
contentId: 'contentId',
content: {
title: 'タイトル',
body: '本文',
},
// 有料プランから利用可能
// https://microcms.io/pricing
isDraft: true,
})
.then((res) => console.log(res.id))
.catch((err) => console.error(err));
update
メソッドは特定のコンテンツを編集するために使用します。
client
.update({
endpoint: 'endpoint',
contentId: 'contentId',
content: {
title: 'タイトル',
},
})
.then((res) => console.log(res.id))
.catch((err) => console.error(err));
APIの型がオブジェクト形式のコンテンツを編集する場合は、contentId
プロパティを使用せずに、エンドポイントのみを指定します。
client
.update({
endpoint: 'endpoint',
content: {
title: 'タイトル',
},
})
.then((res) => console.log(res.id))
.catch((err) => console.error(err));
delete
メソッドは指定されたエンドポイントから特定のコンテンツを削除するために使用します。
client
.delete({
endpoint: 'endpoint',
contentId: 'contentId',
})
.catch((err) => console.error(err));
getList
メソッド、getListDetail
メソッド、getObject
メソッドはデフォルトのレスポンスの型を定義しています。
type Content = {
text: string,
};
/**
* {
* contents: Content[]; // 設定したスキーマの型を格納する配列
* totalCount: number;
* limit: number;
* offset: number;
* }
*/
client.getList<Content>({ /* その他のプロパティ */ })
type Content = {
text: string,
};
/**
* {
* id: string;
* createdAt: string;
* updatedAt: string;
* publishedAt?: string;
* revisedAt?: string;
* text: string; // 設定したスキーマの型
* }
*/
client.getListDetail<Content>({ /* その他のプロパティ */ })
type Content = {
text: string,
};
/**
* {
* createdAt: string;
* updatedAt: string;
* publishedAt?: string;
* revisedAt?: string;
* text: string; // 設定したスキーマの型
* }
*/
client.getObject<Content>({ /* その他のプロパティ */ })
/**
* string[]
*/
client.getAllContentIds({ /* その他のプロパティ */ })
content
の型はContent
であるため、型安全なコンテンツの登録が可能です。
type Content = {
title: string;
body?: string;
};
client.create<Content>({
endpoint: 'endpoint',
content: {
title: 'タイトル',
body: '本文',
},
});
content
はPartial<Content>
型であるため、編集したいプロパティだけを渡せます。
type Content = {
title: string;
body?: string;
};
client.update<Content>({
endpoint: 'endpoint',
content: {
body: '本文',
},
});
Next.jsのApp Routerで利用されるfetchのcacheオプションを指定できます。
指定可能なオプションは、Next.jsの公式ドキュメントを参照してください。
const response = await client.getList({
customRequestInit: {
next: {
revalidate: 60,
},
},
endpoint: 'endpoint',
});
fetchリクエストを中断できます。
const controller = new AbortController();
const response = await client.getObject({
customRequestInit: {
signal: controller.signal,
},
endpoint: 'config',
});
setTimeout(() => {
controller.abort();
}, 1000);
const { createManagementClient } = require('microcms-js-sdk'); // CommonJS
または
import { createManagementClient } from 'microcms-js-sdk'; //ES6
<script>
const { createManagementClient } = microcms;
</script>
const client = createManagementClient({
serviceDomain: 'YOUR_DOMAIN', // YOUR_DOMAINはXXXX.microcms.ioのXXXXの部分です。
apiKey: 'YOUR_API_KEY',
});
メディアに画像やファイルをアップロードできます。
// Blob
import { readFileSync } from 'fs';
const file = readFileSync('path/to/file');
client
.uploadMedia({
data: new Blob([file], { type: 'image/png' }),
name: 'image.png',
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
// or ReadableStream
import { createReadStream } from 'fs';
import { Stream } from 'stream';
const file = createReadStream('path/to/file');
client
.uploadMedia({
data: Stream.Readable.toWeb(file),
name: 'image.png',
type: 'image/png',
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
// or URL
client
.uploadMedia({
data: 'https://example.com/image.png',
// name: 'image.png', ← 任意
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
// File
const file = document.querySelector('input[type="file"]').files[0];
client
.uploadMedia({
data: file,
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
// or URL
client
.uploadMedia({
data: 'https://example.com/image.png',
// name: 'image.png', ← 任意
})
.then((res) => console.log(res))
.catch((err) => console.error(err));
type UploadMediaRequest =
| { data: File }
| { data: Blob; name: string }
| { data: ReadableStream; name: string; type: `image/${string}` }
| {
data: URL | string;
name?: string | null | undefined;
customRequestHeaders?: HeadersInit;
};
function uploadMedia(params: UploadMediaRequest): Promise<{ url: string }>;
const readClient = createClient({
serviceDomain: 'serviceDomain',
apiKey: 'readApiKey',
});
const writeClient = createClient({
serviceDomain: 'serviceDomain',
apiKey: 'writeApiKey',
});
Apache-2.0