# tinyurl-ga.js

> tinyurl.gaのNode.jsラッパー

Latest version **1.0.1** (published 2022-05-29) · GPL-3.0 license · 0 weekly downloads

## Install

```sh
npm install tinyurl-ga.js
pnpm add tinyurl-ga.js
yarn add tinyurl-ga.js
bun add tinyurl-ga.js
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2022-05-29 |
| First published | 2022-05-29 |
| Weekly downloads | 0 |
| License | GPL-3.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | ^18 |
| Dependencies | 0 |
| Unpacked size | 37.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Renorari |
| Maintainers | monhu |
| Keywords | tinyurl, ga, tinyurl-ga |

## Links

- npm: https://www.npmjs.com/package/tinyurl-ga.js
- Repository: https://github.com/renorari/tinyurl-ga.js
- Homepage: https://github.com/renorari/tinyurl-ga.js#readme
- Issues: https://github.com/renorari/tinyurl-ga.js/issues
- npm.io page: https://npm.io/package/tinyurl-ga.js

## Alternatives

- [base64url](https://npm.io/package/base64url.md) — 6.1M weekly downloads
- [get-installed-path](https://npm.io/package/get-installed-path.md) — 502.9K weekly downloads
- [@uppy/url](https://npm.io/package/@uppy/url.md) — 185.8K weekly downloads
- [@d3fc/d3fc-shape](https://npm.io/package/@d3fc/d3fc-shape.md) — 16.2K weekly downloads
- [localizer](https://npm.io/package/localizer.md) — 226 weekly downloads

## Recent versions

- 1.0.1 (latest) — 2022-05-29
- 1.0.0 — 2022-05-29

## README

# tinyurl-ga.js

tinyurl.gaのNode.jsラッパー

## 例

```js
const { create } = require("tinyurl-ga.js");

// Asyncで実行
(async () => {
    console.log("Asyncで実行: ");
    console.log(
        await create("https://renorari.net/")
    );
})();

// Thenで実行
create("https://blog.renorari.net/")
    .then((data) => {
        console.log("Thenで実行: ");
        console.log(data);
    });
```

---
_Source: https://npm.io/package/tinyurl-ga.js · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
