
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
JavaScript SDK Client for NILTO.
You can install this library using npm:
npm install nilto
getContents(params?: GetContentsParams): Promise<GetContentsResponse>指定した条件に合うコンテンツの配列を取得します。
| Parameter | Type | Description |
|---|---|---|
params | GetContentsParams | コンテンツの絞り込み条件。 |
| Type | Description |
|---|---|
Promise<GetContentsResponse> | コンテンツの配列および関連メタデータを含むレスポンスオブジェクト。 |
import { Nilto } from "nilto";
const nilto = new Nilto("your-api-key");
const params: GetContentsParams = {
model: "blog_articles",
limit: 10,
offset: 0,
};
const contentsResponse = await nilto.getContents(params);
console.log(contentsResponse.contents);
getContentsID(contentId: string): Promise<GetContentResponse>指定した ID のコンテンツを取得します。
| Parameter | Type | Description |
|---|---|---|
contentId | string | 取得するコンテンツの ID。 |
| Type | Description |
|---|---|
Promise<GetContentResponse> | 指定されたコンテンツ ID に対応するコンテンツデータを含むレスポンスオブジェクト。 |
import { Nilto } from "nilto";
const nilto = new Nilto("your-api-key");
const contentId = "12345";
const contentResponse = await nilto.getContentsID(contentId);
console.log(contentResponse.content);
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
JavaScript SDK Client for NILTO.
We found that nilto demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.