Skip to content

Installation ​

Get started with .me in seconds.

Quick Install ​

bash
npm install this.me

Basic Usage ​

ts
import ME from "this.me";

const me = new ME();

me["@"]("jabellae");

me.profile.name("Jose Abella");
me.profile.bio("Building the semantic web.");

console.log(me("profile.name")); // "Jose Abella"

Supported Environments ​

.me works out of the box in:

  • Node.js (v18+ recommended)
  • Modern bundlers (Vite, Webpack, Rollup, esbuild)
  • Browsers (via bundler or UMD)
  • TypeScript (full types included)

Installation Methods ​

bash
npm install this.me

2. yarn / pnpm ​

Bash
yarn add this.me
# or
pnpm add this.me

3. CommonJS ​

js
const ME = require("this.me");

const me = new ME();

4. CDN (UMD) – For quick prototyping ​

html

  const me = new Me();

Note: The CDN is convenient for demos and experiments, but we recommend using a bundler for production applications.

Across ESM, CommonJS, and UMD, the runtime export is the constructor itself. Helper statics such as createMe, write, define, and subscribe are attached to that constructor object.

Next Steps ​

MIT License © 2025 neurons.me

Human owns meaning. Everything else asks.