Unverified Commit 47290528 authored by Hong Minhee's avatar Hong Minhee
Browse files

Installation

[ci skip]
parent 51659a26
Loading
Loading
Loading
Loading
+17 −2
Original line number Diff line number Diff line
@@ -55,7 +55,22 @@ resources:
[HTTP Signatures]: https://tools.ietf.org/html/draft-cavage-http-signatures-12


Prerequisite
Installation
------------

[Deno] 1.41.0 or later with `--unstable-kv` flag
As a prerequisite, you need to have [Deno] 1.41.0 or later installed on your
system.  Then you can install Fedify via the following command:

~~~~ sh
deno add @fedify/fedify
~~~~

~~~~ typescript
import { Federation } from "@fedify/fedify";
~~~~

Or you can directly import it in your code using `jsr:` specifier:

~~~~ typescript
import { Federation } from "jsr:@fedify/fedify";
~~~~

docs/install.md

0 → 100644
+24 −0
Original line number Diff line number Diff line
---
nav_order: 2
---
Installation
============

As a prerequisite, you need to have [Deno] 1.41.0 or later installed on your
system.  Then you can install Fedify via the following command:

~~~~ sh
deno add @fedify/fedify
~~~~

~~~~ typescript
import { Federation } from "@fedify/fedify";
~~~~

Or you can directly import it in your code using `jsr:` specifier:

~~~~ typescript
import { Federation } from "jsr:@fedify/fedify";
~~~~

[Deno]: https://deno.com/
+1 −1
Original line number Diff line number Diff line
---
nav_order: 2
nav_order: 3
---

Manual