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
- Host: GitHub
- URL: https://github.com/internxt/sdk
- Owner: internxt
- License: mit
- Created: 2021-11-15T15:00:13.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2026-02-11T15:36:17.000Z (2 months ago)
- Last Synced: 2026-02-12T00:33:55.097Z (2 months ago)
- Language: TypeScript
- Homepage:
- Size: 1.44 MB
- Stars: 19
- Watchers: 0
- Forks: 3
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).