.me — install
Get .me started
One clone, then pick a runtime. Everything below is real — the same steps the repo itself runs.
Clone
git clone https://github.com/neurons-me/.me.git
cd .me
Choose a runtime
🔷 TypeScript — the reference implementation, what every example on this site runs.
cd Typescript
npm install
npm run build
🦀 Rust — published on crates.io, documented on docs.rs.
cargo add this-me
🐍 Python — not available yet.
First kernel
Once installed (TypeScript shown; same shape everywhere):
import ME from "this.me";
const me = new ME();
me["@"]("jabellae"); // your digital identity
me.profile.name("José Abella"); // declare meaning
me("profile.name"); // "José Abella" — resolve meaning
Full walkthrough, with secrets, structural links, and reactive rules: Quick Start.