Skip to content

Commit

Permalink
Update README.md to include support for Bun.js in the installation an…
Browse files Browse the repository at this point in the history
…d usage sections.
  • Loading branch information
sunnyadn committed Oct 28, 2023
1 parent d24b485 commit 5d30dc9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
[![npm version](https://badge.fury.io/js/js-toml.svg)](https://badge.fury.io/js/js-toml)

A TOML parser for JavaScript and TypeScript. Fully tested and 100% compatible with the TOML v1.0.0 spec.
Support Node.js, browsers and Bun⚡️!

## Installation

Expand All @@ -25,10 +26,16 @@ or with pnpm
pnpm add js-toml
```

even support bun!

```bash
bun add js-toml
```

## Usage

```typescript
import { load } from 'js-toml';
import {load} from 'js-toml';

const toml = `
title = "TOML Example"
Expand Down

0 comments on commit 5d30dc9

Please sign in to comment.