1.0.2 • Published 10 months ago

nodeio-sdk v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

Nodeio NPM SDK

Description

The Nodeio NPM SDK provides developers with a seamless integration with the Nodeio API. It simplifies the process of interacting with the API and allows you to access Nodeio's features and functionalities effortlessly.

Installation

You can install the library using either npm or yarn:

NPM

npm install nodeio-sdk

Yarn

yarn add nodeio-sdk

Usage

  1. Import the NodeioApiSdk class into your project:

ES6 module:

import { NodeioApiSdk } from 'nodeio-sdk';

CommonJS module:

const { NodeioApiSdk } = require('nodeio-sdk');
  1. Initialize the SDK with your API key and base URL:
const nodeioSdk = new NodeioApiSdk({
    apiKey: 'YOUR-API-KEY',
    baseUrl: 'BASE-URL',
});
  1. Start using the SDK to interact with the Nodeio API:
async function getUserData() {
    try {
        const authenticatedUser = await nodeioSdk.user.getAuthenticatedUser();
        console.log(authenticatedUser);
        // Handle the authenticatedUser data as per your application's requirements
    } catch (error) {
        console.error('Error fetching authenticated user:', error);
        // Handle errors gracefully in your application
    }
}

getUserData();

Replace 'YOUR-API-KEY' with your actual Nodeio API key, and 'BASE-URL' with the correct base URL for the Nodeio API.

Feel free to explore other available methods in the nodeioSdk object to interact with different parts of the Nodeio API.

For detailed information about each endpoint and its parameters, please refer to the Nodeio API documentation.

If you encounter any issues or have questions, please don't hesitate to reach out to our support team at support@nodeio.xyz.

Happy coding!

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago