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

@horizon-js/property-web-nextjs

v1.1.0

Published

Frontend Next.js do módulo imóvel — URL builder, cache handler ISR, componentes, hooks

Downloads

235

Readme

@horizon-js/property-web-nextjs

Frontend Next.js do módulo imóvel do Horizon.


Release 1.0.0 — Escopo mínimo

Esta primeira release contém apenas:

  • PropertyURLBuilder — builder pra URLs /imovel/{slug}/{reference} com suporte a catch-all routes do Next.js
import { PropertyURLBuilder } from "@horizon-js/property-web-nextjs"

const builder = new PropertyURLBuilder({ basePath: "/imovel" })

// Montar URL
builder.build({ slug: "apartamento-3-quartos-centro", reference: "REF123" })
// → "/imovel/apartamento-3-quartos-centro/REF123"

builder.build({ reference: "REF456" })
// → "/imovel/REF456"

// Parsear catch-all slugs
builder.parse(["apartamento-3-quartos", "REF123"])
// → { slug: "apartamento-3-quartos", reference: "REF123" }

Roadmap

2.0.0 (planejada) — componentes + feature-based provider composition

Absorver das 127 files de apps/web/src/modules/property/features/item-display/ do GHI-7661:

  • UIPropertyCard, PropertyDetailPage, PropertyHeading, PropertyInfoCard, PropertyValuesCard
  • 16 sub-features de página de imóvel com padrão Feature-Based Provider Composition: Location, Financing, Contact, Photo, Video, Tour, Status Stripe, Info Display, SEO, Media Nav, Options Buttons, Request Buttons, Share, Report, Inspect, Similar Properties
  • Contratos tipados — interfaces estáveis por sub-feature, resolvers trocáveis por CRM
  • ProvidersPropertyPageProvider distribui estado pros sub-providers
  • Docs em docs/FEATURE-BASED-PROVIDER-COMPOSITION.md (ver também projetão reorganizacao-pacotes-npm/07-PROPERTY-WEB-NEXTJS.md quando criado)

2.x — hooks de domínio

  • useProperty(id), usePropertyList(filters), usePropertyFavorites()
  • Dependente da finalização do @horizon-js/web-nextjs/frontend-query-engine com TanStack hooks

Parte do módulo complexo property

Conforme 06-MODULOS-COMPLEXOS-VS-LEVES.md do projetão Horizon 2.3, property é módulo complexo com 4 pacotes versionados independentemente:

| Pacote | Camada | Status | |---|---|---| | @horizon-js/property-domain-schema | Dados (shape de entidade) | 3.17.0 ✅ | | @horizon-js/property-api-nextjs | Backend (Prisma, endpoints) | pendente | | @horizon-js/property-web-nextjs | Frontend (este pacote) | 1.0.0 ✅ | | @horizon-js/property-automations-nextjs | Sync + automações | 1.0.0 ✅ |


Documentação