# uri-beacon-uri-encoding

> Encode and decode UriBeacon URIs

Latest version **1.1.5** (published 2015-06-26) · MIT license · 0 weekly downloads

## Install

```sh
npm install uri-beacon-uri-encoding
pnpm add uri-beacon-uri-encoding
yarn add uri-beacon-uri-encoding
bun add uri-beacon-uri-encoding
```

## 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.1.5 |
| Published | 2015-06-26 |
| First published | 2015-06-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 0.10.0 |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Patrick Gaubatz |
| Maintainers | pgaubatz |
| Keywords | uribeacon, bluetooth, bluetooth low energy, ble, physical web |

## Links

- npm: https://www.npmjs.com/package/uri-beacon-uri-encoding
- Repository: https://github.com/pgaubatz/node-uri-beacon-uri-encoding
- Homepage: https://github.com/pgaubatz/node-uri-beacon-uri-encoding#readme
- Issues: https://github.com/pgaubatz/node-uri-beacon-uri-encoding/issues
- npm.io page: https://npm.io/package/uri-beacon-uri-encoding

## Dependencies (1)

- [node-uuid](https://npm.io/package/node-uuid.md) ^1.4.3

## Alternatives

- [@lexical/table](https://npm.io/package/@lexical/table.md) — 3.0M weekly downloads
- [mantine-datatable](https://npm.io/package/mantine-datatable.md) — 98.2K weekly downloads
- [react-native-collapsible-tab-view](https://npm.io/package/react-native-collapsible-tab-view.md) — 70.6K weekly downloads
- [@handsontable/vue3](https://npm.io/package/@handsontable/vue3.md) — 16.1K weekly downloads
- [vuewordcloud](https://npm.io/package/vuewordcloud.md) — 7.2K weekly downloads

## Recent versions

- 1.1.5 (latest) — 2015-06-26
- 1.1.4 — 2015-06-21
- 1.1.3 — 2015-06-19
- 1.1.2 — 2015-06-18
- 1.1.1 — 2015-06-16
- 1.1.0 — 2015-06-16

## README

# uri-beacon-uri-encoding
[![npm version](https://badge.fury.io/js/uri-beacon-uri-encoding.svg)](http://badge.fury.io/js/uri-beacon-uri-encoding)
[![Build Status](https://travis-ci.org/pgaubatz/node-uri-beacon-uri-encoding.svg?branch=master)](https://travis-ci.org/pgaubatz/node-uri-beacon-uri-encoding)
[![Coverage Status](https://coveralls.io/repos/pgaubatz/node-uri-beacon-uri-encoding/badge.svg)](https://coveralls.io/r/pgaubatz/node-uri-beacon-uri-encoding)
[![Dependency Status](https://david-dm.org/pgaubatz/node-uri-beacon-uri-encoding.svg)](https://david-dm.org/pgaubatz/node-uri-beacon-uri-encoding)

Encode and decode [UriBeacon URIs](https://github.com/google/uribeacon/blob/master/specification/AdvertisingMode.md).  

## Installation

    npm install --save uri-beacon-uri-encoding

## Usage
```javascript
var encoding = require('uri-beacon-uri-encoding');

var uri = 'http://some.url';
var encoded = encoding.encode(uri);
var decoded = encoding.decode(encoded);

assert.strictEqual(decoded, uri);
```

This module is supposed to be used in conjunction with the [`noble` package](https://github.com/sandeepmistry/noble) or the [`bleno` package](https://github.com/sandeepmistry/bleno).

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