An open API service indexing awesome lists of open source software.

https://github.com/internxt/sdk

The SDK for interacting with Internxt's services
https://github.com/internxt/sdk

Last synced: 2 months ago
JSON representation

The SDK for interacting with Internxt's services

Awesome Lists containing this project

README

          

# Getting Started

## Installation

- Create a `.npmrc` file from the `.npmrc.template` example provided in the repo.
- Replace `TOKEN` with your own [Github Personal Access Token](https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token) with `read:packages` permission **ONLY**
- Use `yarn` to install project dependencies.

## Import style guideline

- Always use **relative imports** (e.g., `../utils/helper` or `./myComponent`).
- Do **NOT** use **absolute imports** (e.g., `src/...`, `@/...`, etc).