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 🙏

© 2024 – Pkg Stats / Ryan Hefner

joseorm

v1.1.6

Published

Um ORM para localStorage agnóstico de frameworks

Downloads

571

Readme

Jose ORM

Jose ORM é um poderoso ORM (Object-Relational Mapping) para localStorage com tipagem segura, agnóstico de framework que torna a persistência de dados nos navegadores simples e confiável.

Nota: Este projeto está em desenvolvimento ativo e ainda não está pronto para uso em produção. Lembre-se de deixar um feedback ou abrir uma issue se encontrar problemas.

Por que usar Jose ORM?

  • 🔒 Tipagem Segura: Construído com TypeScript para total segurança de tipos
  • 🚀 Interface Simples: API intuitiva e natural - Simples como o José
  • 💾 localStorage Simplificado: Trate o localStorage como um banco de dados real
  • 🔍 Operações tipo Query: Encontre, atualize e delete dados facilmente
  • 🏃 Zero Dependências: Leve e rápido

Instalação

npm install joseorm

Início Rápido

import Jose, {j} from 'joseorm'

// Defina seu tipo de modelo
interface User {
  id: string
  name: string
  email: string
  age: number
  isActive: boolean
}

// Crie um Schema para o seu modelo
const userSchema = j.table<User>('users', {
    id: j.string().primaryKey('cuid'),
    name: j.string(),
    email: j.string().unique(),
    age: j.number(),
    isActive: j.boolean(true)
})

// Inicialize o ORM
const db = new Jose.createClient({
    storage: 'localStorage'
})

// Crie um repository para o seu modelo
const userRepository = db.createRepository(userSchema)

Recursos Avançados

Consultando Dados

// Encontre por campo específico
const adultos = userRepository.findMany({
  age: {
    greaterThan: 17
  }
})

// Consultas complexas
const joaos = userRepository.findMany({
  name: {
    includes: 'João',
  },
  age: {
      greaterThan: 18
    }
})

Operações em Lote

// Crie múltiplos usuários
const users = userRepository.createMany([
  {id: '1', name: 'João', email: '[email protected]', age: 17},
  { id: '2', name: 'José', email: '[email protected]', age: 30 },
  { id: '3', name: 'Maria', email: '[email protected]', age: 25 }
])

// Delete múltiplos usuários
userRepository.delete({
  age: {
    greaterThan: 17
  }
})

userRepository.update({
  age: {
    greaterThan: 17
  }
},
{
  isActive: false
}
)

Segurança de Tipos Jose ORM utiliza TypeScript para fornecer total segurança de tipos

interface Product {
  id: string
  name: string
  price: number
}

const userRepository = db.createRepository<Product>(productSchema)

// TypeScript detectará este erro
userRepository.create({
  id: '1',
  name: 'Notebook',
  price: '999' // Erro de tipo: price deve ser um número
})

Vantagens Sobre localStorage Puro

  • Tipagem Segura: Detecte erros durante a compilação Dados Estruturados: Mantenha consistência na estrutura dos dados
  • Capacidade de Consulta: Filtre e pesquise dados facilmente Experiência do Desenvolvedor: API limpa em vez de parsing manual de JSON
  • Integridade dos Dados: Validação automática de dados Contribuindo

Contribuições são bem-vindas! Sinta-se à vontade para abrir issues e enviar pull requests.

Licença

Este projeto é licenciado sob a licença MIT. Consulte o arquivo LICENSE para mais informações.