From 133d7efd8895fb520da6ee6841e7b05045ac332b Mon Sep 17 00:00:00 2001 From: Taras Mankovski Date: Fri, 3 Nov 2023 15:57:25 -0400 Subject: [PATCH] Minor tweaks --- www/docs/installation.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/www/docs/installation.mdx b/www/docs/installation.mdx index eccb8d3a4..d6b88de9d 100644 --- a/www/docs/installation.mdx +++ b/www/docs/installation.mdx @@ -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/effection@3.0.0-beta.1). 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/). +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/effection@3.0.0-beta.1). 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/). ```ts import { main } from 'https://deno.land/x/effection@3.0.0-beta.1/mod.ts';