Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
taras committed Nov 3, 2023
1 parent a76be5c commit 133d7ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions www/docs/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ id: installation
title: Installation
---

Effection is designed to for gradual adoption. You can use as a little or as much Effection as you need.
Effection is designed for gradual adoption. You can use as a little or as much Effection as you need.
You can use Effection as a replacement for an async/await within your existing application, manage all of
async operations in your application or anything in-between.

Expand All @@ -18,15 +18,15 @@ Effection packages are available via NPM and Yarn. The package includes ESM, Com

```bash
// install with npm
npm install effection@v3
npm install effection@next

// install with yarn
yarn add effection@v3
yarn add effection@next
```

## Deno

Effection has first-class Deno support because it's written in Deno. We publish NPM/Yarn packages from our [Deno package](https://deno.land/x/[email protected]). <small>If you're curious, can [learn how we keep NPM/YARN in-sync with our Deno first-packages](https://frontside.com/blog/2023-04-27-deno-is-the-easiest-way-to-author-npm-packages/).</small>
Effection has first-class Deno support because it's written in Deno. We publish NPM/Yarn packages from our [Deno package](https://deno.land/x/[email protected]). <small>If you're curious how we keep NPM/YARN and Deno packages in-sync, you can [checkout the blog post on how publish Deno packages to NPM.](https://frontside.com/blog/2023-04-27-deno-is-the-easiest-way-to-author-npm-packages/).</small>

```ts
import { main } from 'https://deno.land/x/[email protected]/mod.ts';
Expand Down

0 comments on commit 133d7ef

Please sign in to comment.