Tuitio client is an npm package written in typescript that facilitates the integration of a react application with Tuitio.
 
Go to file
Tudor Stanciu b743f3a90c 1.0.2 - Validate that Tuitio's URL parameter is a valid URL 2023-02-11 17:42:05 +02:00
.vscode added tests 2023-02-10 02:20:52 +02:00
src 1.0.2 - Validate that Tuitio's URL parameter is a valid URL 2023-02-11 17:42:05 +02:00
.gitignore gitignore update 2023-02-11 05:06:49 +02:00
.npmrc Package initialization 2023-02-07 00:32:31 +02:00
.prettierrc Package initialization 2023-02-07 00:32:31 +02:00
README.md [1.0.1] 2023-02-11 16:01:16 +02:00
jestconfig.json 100% test coverage 2023-02-11 04:01:15 +02:00
package-lock.json [1.0.1] 2023-02-11 16:01:16 +02:00
package.json [1.0.1] 2023-02-11 16:01:16 +02:00
tsconfig.json Package initialization 2023-02-07 00:32:31 +02:00
tslint.json Package initialization 2023-02-07 00:32:31 +02:00

README.md

Tuitio client

Introduction

Tuitio client is an npm package written in typescript that facilitates the integration of a javascript application with Tuitio.

Package installation

The package installation can be done in two ways:

  • from the command line: npm install @flare/tuitio-client@1.0.0
  • from the package.json file: "@flare/tuitio-client": "1.0.0"

How to use the package

const { TuitioClient, fetch, invalidate } =  require("@flare/tuitio-client");
const TuitioClient =  require("@flare/tuitio-client");
const type { TuitioToken, TuitioAuthenticationResult, TuitioState } =  require("@flare/tuitio-client");
import { TuitioClient, fetch, invalidate } from "@flare/tuitio-client";
import TuitioClient from "@flare/tuitio-client";
import type { TuitioToken, TuitioAuthenticationResult, TuitioState } from "@flare/tuitio-client";

Unit testing

Unit testing is done using Jest. This is an awesome testing framework created by Facebook.
The files containing tests are identified by the extension *.test.ts.
All tests in the package can be executed by running: npm test.

Changelog

1.0.0 - Package initialization
1.0.1 - Export Tuitio types