npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

eny-ai

v3.0.0

Published

🧠 ENY-AI v3.0 — Sistema Simbólico Universal. Linguagem .mid.ai 100% simbólica. ⚛Σ[]=useState, ⇄↓=fetch, ☐🔘=button. 120+ símbolos. React/Firebase/HTTP. Zero Build!

Readme

🧠 ENY-AI v3.0 — Sistema Simbólico Universal

Linguagem própria .mid.ai — Código 100% Simbólico

npm license


⚡ O que é ENY-AI?

ENY-AI é um sistema revolucionário que permite escrever código usando símbolos ao invés de texto.

║ TypeScript tradicional
const [email, setEmail] = useState('');
useEffect(() => {
  fetch('/api/users').then(r => r.json()).then(setData);
}, []);

║ ENY-AI — 100% Simbólico
⚛Σ[📧, ↑📧] ← ''
⚛⚡[ → ⇄↓'/api/users' ⇄✓ ↑📦 , []]

📦 Instalação

npm install eny-ai

🚀 Quick Start

Estrutura de Projeto

meu-app/
├── app/
│   ├── app.mid.ai          # Layout raiz
│   ├── home.mid.ai         # Página inicial
│   └── global.css.mid.ai   # Estilos globais
├── src/
│   ├── componentes/
│   │   ├── ui.mid.ai       # Componentes UI
│   │   └── header.mid.ai   # Header
│   ├── lib/
│   │   └── firebase.mid.ai # Firebase
│   └── utils/
│       └── index.mid.ai    # Utilitários
├── public/
└── package.json

Exemplo: Componente

╔═══════════════════════════════════════════════════════╗
║  🧠 ENY-AI — BUTTON.MID.AI                            ║
╚═══════════════════════════════════════════════════════╝

§ 1. IMPORTS
─────────────────────────────────────────────────────────

⧉ { ⚛Σ, ☐ } ← 'eny-ai'

§ 2. COMPONENT
─────────────────────────────────────────────────────────

☐ Button → ({ children, onClick, variant ← 'primary' }) →
  → ⟨button .📝{`btn btn-${variant}`} ◌.⬆{onClick}⟩
    {children}
  ⟨/button⟩

§ 3. EXPORT
─────────────────────────────────────────────────────────

↑ Button

📚 Alfabeto Simbólico

§ Estado (Σ)

| Símbolo | JavaScript | Descrição | |---------|------------|-----------| | Σ | useState | Estado | | ⚛Σ[ | useState( | Hook estado | | Σ● | useContext | Contexto | | Σ♾ | persistentState | Persistente | | Σ⊲ | useReducer | Reducer |

§ Efeitos (⚡)

| Símbolo | JavaScript | Descrição | |---------|------------|-----------| | | useEffect | Efeito | | ⚛⚡[ | useEffect(() => { | Hook efeito | | ⚡~ | return () => | Cleanup |

§ Eventos (◌)

| Símbolo | JavaScript | Descrição | |---------|------------|-----------| | ◌.⬆ | onClick | Clique | | ◌.⇄ | onChange | Mudança | | ◌.⤴ | onSubmit | Submit | | ◌.↹ | onFocus | Focus | | ◌.↺ | onBlur | Blur |

§ HTTP (⇄)

| Símbolo | JavaScript | Descrição | |---------|------------|-----------| | ⇄↓ | fetch GET | GET | | ⇄↑ | fetch POST | POST | | ⇄⬆ | fetch PUT | PUT | | ⇄✂ | fetch DELETE | DELETE | | ⇄✓ | .then() | Sucesso | | ⇄✗ | .catch() | Erro |

§ UI (☐)

| Símbolo | HTML | Descrição | |---------|------|-----------| | | function | Componente | | ☐⬜ | <div> | Div | | ☐🔘 | <button> | Button | | ☐🔤 | <input> | Input | | ☐📋 | <form> | Form | | | < | JSX abrir | | | > | JSX fechar |

§ Tipos (■)

| Símbolo | TypeScript | Descrição | |---------|------------|-----------| | 𝕊 | string | String | | | number | Inteiro | | | number | Real | | 𝔹 | boolean | Boolean | | 𝔸 | Array | Array | | 𝕆 | object | Object | | Ø | null | Null | | | interface | Interface |

§ Lógica

| Símbolo | JavaScript | Descrição | |---------|------------|-----------| | | true | True | | | false | False | | | && | AND | | | \|\| | OR | | ¬ | ! | NOT | | | && (render) | Condicional |

§ Coleções

| Símbolo | JavaScript | Descrição | |---------|------------|-----------| | | .map | Map | | | .filter | Filter | | | .reduce | Reduce | | | .find | Find | | | .every | Every | | | .some | Some |


🔧 API JavaScript

import { symbols, http, storage, midai } from 'eny-ai';

// React hooks
const { S, E, M, C, R, N, L, U, V } = symbols;
// S = useState, E = useEffect, M = useMemo, etc.

// HTTP
await http.get('/api/data');
await http.post('/api/data', { name: 'Test' });

// Storage
storage.set('user', { id: 1 });
const user = storage.get('user');

// Interpretar .mid.ai
const js = midai.interpret('⚛Σ[📧, ↑📧] ← ""');
console.log(js); // const [email, setEmail] = useState("")

📁 Arquivos Incluídos

| Arquivo | Descrição | |---------|-----------| | master.mid.ai | Biblioteca completa de referência | | react.mid.ai | Mapping React com 12 seções | | libariEnyos.txt | Documentação da biblioteca | | app/*.mid.ai | Templates de aplicação | | src/componentes/*.mid.ai | Componentes UI prontos | | src/lib/*.mid.ai | Integrações (Firebase, etc) | | src/utils/*.mid.ai | Funções utilitárias |


🎯 Por que ENY-AI?

  1. 96% Menos Texto — Código mais conciso e visual
  2. Universal — Funciona com React, Next.js, Firebase
  3. Zero Build — Símbolos executam direto
  4. Intuitivo — Símbolos representam conceitos
  5. Evolutivo — IA pode gerar e otimizar código

📊 Comparação

| Métrica | JavaScript | ENY-AI | |---------|------------|--------| | Caracteres | 100% | ~4% | | Linhas | 100% | ~60% | | Legibilidade | Média | Alta | | Curva aprendizado | Baixa | Média | | Expressividade | Alta | Muito Alta |


🔜 Roadmap

  • [ ] VS Code Extension com syntax highlighting
  • [ ] CLI para criar projetos eny create my-app
  • [ ] Hot reload para arquivos .mid.ai
  • [ ] Gerador de código AI
  • [ ] Playground online

📝 Licença

MIT © EnyOS


🤝 Contribuir

git clone https://github.com/enyos/eny-ai
cd eny-ai
npm install
npm run dev