@smapiot/piral-cloud-browser
TypeScript icon, indicating that this package has built-in type declarations

1.14.0-pre.20240517.1 • Public • Published

Piral Logo

@smapiot/piral-cloud-browser

Browser-usable API Client for the Piral Feed Service.

This package works in any environment supporting fetch and handling ESMs (e.g., bundlers, modern browsers, ...).

Important Links

  • 📢 We are hiring! - work with us on Piral, its ecosystem and our users
  • 🌍 Website - learn more about the Piral Feed Service
  • 📖 Documentation - everything to get started and master the Piral Feed Service
  • 👪 Community Chat - ask questions and provide answers in our Gitter room

Installation

The package can be installed with your favorite npm client, e.g.:

npm i @smapiot/piral-cloud-browser

Once installed the package is ready to be used.

Usage

To use the package you need to import the createServiceClient function and call it:

import { createServiceClient } from '@smapiot/piral-cloud-browser';

const client = createServiceClient({
  apiKey: '123...',
});

// use the client

If you want to use it with your own Piral Feed Service instance then provide the host option:

import { createServiceClient } from '@smapiot/piral-cloud-browser';

const client = createServiceClient({
  apiKey: '123...',
  host: 'http://localhost:9000',
});

// use the client

Example

If you want to just manipulate a feed you can go ahead and use the doUpdateFeed function.

import { createServiceClient } from '@smapiot/piral-cloud-browser';

const client = createServiceClient({
  apiKey: '123...',
});

const feedId = 'my-feed';

console.log('Before', await client.doQueryFeed(feedId));

await client.doUpdateFeed(feedId, {
  contributors: ['a@b.com', 'c@d.com'],
});

console.log('After', await client.doQueryFeed(feedId));

Everything is fully typed using TypeScript declarations.

License

This SDK is released using the MIT license. For more information see the license file.

Versions

Current Tags

Version History

Package Sidebar

Install

npm i @smapiot/piral-cloud-browser

Homepage

piral.cloud

Weekly Downloads

46

Version

1.14.0-pre.20240517.1

License

MIT

Unpacked Size

75.7 kB

Total Files

6

Last publish

Collaborators

  • florianrappl