0.1.8-beta • Published 2 years ago

@whizzes/linx v0.1.8-beta

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Still under early development. The underlying server is available on whizzes/linx.

Getting Started

npm install @whizzes/linx

Usage

import { Client } from '@whizzes/linx/browser';

import type { Linx } from '@whizzes/linx/browser';

// The URL where Linx is hosted
const linxServer = 'http://localhost:3000';

// Create a Client instance
const linx = new Client(linxServer);

let url = '';
let error = null;
let link: Linx.Link | null = null;

async function createLink(): Promise<void> {
  try {
    link = await linx.new(url);
  } catch (err) {
    error = err.toString();
  }
}

Contributions

Every contribution to this project is welcome, feel free to open PRs and issues if you find fit for any.

License

Licensed under the MIT license. Refer to the LICENSE file.

0.1.8-beta

2 years ago

0.1.7-beta

2 years ago

0.1.6-beta

2 years ago

0.1.5-beta

2 years ago

0.1.4-beta

2 years ago

0.1.3-beta

2 years ago

0.1.2-beta

2 years ago

0.1.1-beta

2 years ago

0.1.0-beta

2 years ago