A Rust port of Nano the feeless and digital currency
🧡 Built with SvelteKit 🧡
RsNano is a Rust port of the original Nano Node. The original Nano Node is written in C++. While C++ is a very powerful language, it makes it easy to introduce potentially exploitable bugs, like buffer overflows, dangling pointers, race conditions or integer overflows.
Rust, on the other hand, offers similar performance characteristics as C++, but guarantees memory safety and thread safety at compile time.
This Repository is the homepage for RsNano and available at https://www.rsnano.com. If you want to support the development of the RsNano node, head over to https://github.com/rsnano-node/rsnano-node.
-
Install pnpm
-
Clone the repo
git clone https://github.com/rsnano-node/rsnano.com
cd rsnano.com
pnpm i
After installing the required dependencies, you can start the development server with the following command:
pnpm run dev
# or start the server and open the app in a new browser tab
pnpm run dev -- --open