From 7699d4997b8e5ba65f664461a3f8d67d59d4d638 Mon Sep 17 00:00:00 2001 From: Pablo Fernandez Date: Thu, 27 Jun 2024 10:11:23 +0100 Subject: [PATCH] add BUILD.md (closes: #244) --- BUILD.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 BUILD.md diff --git a/BUILD.md b/BUILD.md new file mode 100644 index 00000000..1c2165a7 --- /dev/null +++ b/BUILD.md @@ -0,0 +1,21 @@ +# Build NDK + +NDK is structured as a monorepo using `pnpm` as the package manager. + +``` +git clone https://github.com/nostr-dev-kit/ndk +cd ndk +pnpm install +pnpm build +``` + +If you only care about building ndk core and not the family of packages you can just + +``` +git clone https://github.com/nostr-dev-kit/ndk +cd ndk +pnpm install +cd ndk +pnpm build +``` +