-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|
||
|
@@ -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'; | ||
|