Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.

Commit 86bae38

Browse files
committed
format files
1 parent a8d7baa commit 86bae38

File tree

6 files changed

+469
-21
lines changed

6 files changed

+469
-21
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
## Overview
99

1010
Meshtastic.js is a JavaScript library that provides an API to interact with
11-
[Meshtastic](https://meshtastic.org) devices.
12-
All packages are published to [JSR](https://jsr.io/@meshtastic)
11+
[Meshtastic](https://meshtastic.org) devices. All packages are published to
12+
[JSR](https://jsr.io/@meshtastic)
1313

1414
Contained within this monorepo are the following packages:
15+
1516
- `@meshtastic/core`: Core functionality
1617
- `@meshtastic/transport-deno`: TCP Transport for the Deno runtime
1718
- `@meshtastic/transport-http`: HTTP Transport

packages/transport-deno/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@
88

99
## Overview
1010

11-
`@meshtastic/transport-deno` Provides TCP transport (Deno) for Meshtastic devices.
12-
Installation instructions are avaliable at [JSR](https://jsr.io/@meshtastic/transport-deno)
11+
`@meshtastic/transport-deno` Provides TCP transport (Deno) for Meshtastic
12+
devices. Installation instructions are avaliable at
13+
[JSR](https://jsr.io/@meshtastic/transport-deno)
1314

1415
## Usage
1516

1617
```ts
17-
import { MeshDevice } from '@meshtastic/core';
18-
import { TransportDeno } from '@meshtastic/transport-deno';
18+
import { MeshDevice } from "@meshtastic/core";
19+
import { TransportDeno } from "@meshtastic/transport-deno";
1920

2021
const transport = await TransportDeno.create("10.10.0.57");
2122
const device = new MeshDevice(transport);

0 commit comments

Comments
 (0)