Rust implementation of NextGraph, a Decentralized and local-first web 3.0 ecosystem https://nextgraph.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextgraph-rs/ng-app
Niko 3479428c70 ng-app uses the sdk 12 months ago
..
.vscode ng-app uses the sdk 12 months ago
src ng-app uses the sdk 12 months ago
src-tauri ng-app uses the sdk 12 months ago
.gitignore ng-app uses the sdk 12 months ago
README.md ng-app uses the sdk 12 months ago
index.html ng-app uses the sdk 12 months ago
package.json ng-app uses the sdk 12 months ago
pnpm-lock.yaml ng-app uses the sdk 12 months ago
postcss.config.cjs ng-app uses the sdk 12 months ago
svelte.config.js ng-app uses the sdk 12 months ago
tailwind.config.cjs ng-app uses the sdk 12 months ago
tsconfig.json ng-app uses the sdk 12 months ago
tsconfig.node.json ng-app uses the sdk 12 months ago
vite.config.ts ng-app uses the sdk 12 months ago

README.md

NextGraph apps (Linux, MacOS, Windows, Android, iOS, web)

NextGraph native apps use the Tauri framework.

All the apps are using an embedded WebView that renders a Svelte app.

Install

cargo install tauri-cli --version "^2.0.0-alpha"
npm install -g pnpm
pnpm install

VS Code + Svelte + Tauri + rust-analyzer.

Web

Dev

pnpm webdev
// then open http://localhost:1421/

Prod

pnpm webbuild
// then the application is available in dist-web folder
// can be served with cd dist-web ; python3 -m http.server

in order a build a self-contained html file, useful for offline use, do:

pnpm filebuild
// single file is available in dist-file/index.html
// the assets folder can be discarded

Desktop

Install all prerequisites for your dev platform.

to run the dev env :

## on macos
cargo tauri dev
## on linux
cargo tauri dev --target x86_64-unknown-linux-gnu
## on win
cargo tauri dev --target x86_64-pc-windows-msvc

to build the production app installer :

MacOs

cargo tauri build
// the installer is then available in target/x86_64-apple-darwin/release/bundle/dmg/NextGraph_0.1.0_x64.dmg
// or if you just want the app, it is at target/x86_64-apple-darwin/release/bundle/macos/NextGraph.app

Linux (Ubuntu 22.04)

cargo tauri build --target x86_64-unknown-linux-gnu

Windows (7)

cargo tauri build --target x86_64-pc-windows-msvc

Android

rustup target add aarch64-linux-android armv7-linux-androideabi i686-linux-android x86_64-linux-android

to launch the dev app :

cargo tauri android dev

to build the production app :

cargo tauri android build

to debug the Svelte app, use Chrome :

iOS

First, make sure Xcode is properly installed. then :

rustup target add aarch64-apple-ios x86_64-apple-ios aarch64-apple-ios-sim

to launch the dev app :

cargo tauri ios dev

to build the production app :

cargo tauri ios build