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

@ng-juquinha/ui

v17.4.6

Published

<h1 align="center"> NG-Juquinha </h1>

Readme

📜 Motivação (opcional)

A biblioteca ng-juquinha primeiramente foi criada por um colega de equipe para atender ao negócio, já que tinhamos problemas com algumas outros bibliotecas, ela foi criada para ser de fácil utilização e não haver problemas entre as versões do angular, foi decidido que as versões do projeto iriam acompanhar a versão do angular.

Me senti inspirado em me basear no trabalho feito e criar uma biblioteca de uso público, que possam utilizar componentes simples, porém muito úteis.

📦 Instalação

A instalação pode ser feita com gerenciadores de pacotes como o mais tradicional npm, pnpm ou bun.

Use o comando no local que deseja criar o projeto, pode começar usando o comando abaixo para criar um projeto na versão do angular 17:

$ npx -p @angular/cli@17 ng new nome-do-projeto --package-manager gerenciador-de-pacote

Após criar o projeto pode entrar na pasta do projeto e inicar o editor de código:

$ cd nome-do-projeto
$ code .

Realize a instalação da biblioteca de acordo com o gerenciador escolhido:

$ npm install @ng-juquinha/ui
$ pnpm add @ng-juquinha/ui
$ bun i @ng-juquinha/ui

Após realizar a instalação, é necessário adicionar os estilos aos arquivo angular.json ao lado do src/styles.scss.

"styles": [
  "src/styles.scss",
  "node_modules/@ng-juquinha/ui/assets/themes/juquinha/theme.scss"
],

Pode usar a CLI do angular para iniciar o projeto ou executar o comando de start:

# Usando a CLI do angular
$ ng serve
# Usando npm
$ npm run start
# Usando pnpm
$ pnpm start
# Usando bun
$ bun start

✨ Versões

As versões lançadas do ng-juquinha, será sempre para ser compátivel com a versão de mesmo número do angular.

| @ng-juquinha/ui | Angular | | --------------- | ------- | | 17.x.x | 17.x.x |

🪄 Contribuir com o projeto

Para contribuir com o projeto pode seguir os passos abaixo:

# A princípio foi criada uma pasta projects dentro de C:
# dentro da pasta projects, tenho o projeto ng-juquinha
# e tenho o projeto com nome testing para quando rodar
# o comando na biblioteca, já instale no projeto testing.

# Realize o clone do projeto
$ git clone https://github.com/juanvieiraprado99/ng-juquinha.git

# Instale as dependências do projeto com o gerenciador de preferência
$ npm install

# Rode o comando abaixo para iniciar o projeto:
$ npm run build-ui-dev

# O storybook está disponível como parte da documentação:
$ npm run storybook