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

front-packages

v1.0.5

Published

Monorepo que contiene npm packages para el desarrollo de proyectos de frontend.

Downloads

30

Readme

Fizzmod Front Packages

Monorepo que contiene npm packages para el desarrollo de proyectos de frontend.

[TOC]

Lista de packages

Para ver la instalación y uso de alguno, ingresar al link del package.

Desarrollo de packages

Para facilitar la tarea de gestionar multiples packages en un solo repo utilizamos Lerna, una herramienta muy util que optimiza el flujo de trabajo en la administración de repositorios mupli-package con git y npm.

Publicar un package requiere que cumpla con los siguientes items:

  • README.md con instrucciones para instalación, descripción, todas las configuraciones posibles y ejemplos de uso.

  • Unit tests, se debe incluir el script test de npm para que corra jest.

  • Test coverage de al menos 80%.

  • Código sin errores de linter.

  • Changelog actualizado.

Creación

Para crear un package simplemente se debe crear una carpeta con el nombre del package dentro de packages/ e inicializar npm dentro.

Estructura de carpetas

front-packages/
  package.json
  packages/
    package-1/
      package.json
      src/
        index.js
        index.test.js
    package-2/
      package.json
        src/
          index.js
          index.test.js

Tests

Para testear los packages utilizamos jest y enzyme(react). Cada package debe tener un script de npm test.

Ejemplo jest:

// sum.js
export const sum = (a, b) => a + b;
// sum.test.js
import { sum } from './sum';

test('adds 1 + 2 to equal 3', () => {
  expect(sum(1, 2)).toBe(3);
});

Ejemplo jest + enzyme:

import React from 'react';
import { shallow } from 'enzyme';

import MyComponent from './MyComponent';
import Foo from './Foo';

describe('<MyComponent />', () => {
  it('renders three <Foo /> components', () => {
    const wrapper = shallow(<MyComponent />);
    expect(wrapper.find(Foo)).toHaveLength(3);
  });

  it('renders an `.icon-star`', () => {
    const wrapper = shallow(<MyComponent />);
    expect(wrapper.find('.icon-star')).toHaveLength(1);
  });
});

describe('<MyComponent /> snapshot', () => {
  it('renders MyComponent', () => {
    const wrapper = shallow(<MyComponent />);
    expect(wrapper).toMatchSnapshot();
  });

  it('renders MyComponent with color blue', () => {
    const wrapper = shallow(<MyComponent color="blue" />);
    expect(wrapper).toMatchSnapshot(1);
  });
});

NPM Scripts

{
  "scripts": {
    "check-uncommited-changes": "git diff --exit-code && git diff --cached --exit-code",
    "clean": "lerna clean",
    "test": "lerna run test",
    "bootstrap": "lerna bootstrap --hoist",
    "publish": "npm run check-uncommited-changes && lerna publish"
  }
}

bootstrap

$ npm run bootstrap

Intala todas las dependencias de los packages y linkea las dependencias cruzadas.

clean

$ npm run clean

Remueve la carpeta node_modules de todos los packages.

publish

$ npm run publish

Publica los packages a npm. Cuando se ejecuta, este comando hace lo siguiente:

Revisa que el working directory y staging area esten limpios.
Crea una nueva release de los packages que han sido actualizados.
Solicita la nueva versión.
Crea un nuevo git commit/tag en el proceso de publicación a npm.

test

$ npm test

Corre los test de todos los packages

¿Por qué están todos los packages en un solo repo?

Mantener muchos packages dispersados en distintos repositorios resulta dificultoso, más aún si se utilizan las mismas herramientas para testeo, linter o desarrollo.
Esta forma de organizar el código es llamada monorepo. Proyectos como Babel, React, Angular, Ember, Meteor, Jest, desarrollan sus packages en un único monorepo.