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

erickomar--parimpar

v1.0.1

Published

Permite determinar si un numero es par o es impar

Downloads

4

Readme

Crear un nuevo paquete de npm

Pasos para crear el package

  1. Inicializar npm desde CLI en el directorio del proyecto con el comando
    npm init
  1. Seleccionar las opciones que nos muestra npm en CLI.

  2. Como definimos que eel enter point se llama index.js, crear el archivo en main

  3. Crear una carpeeta llamado module, en donde vivira nuestro modulo

  4. Crear el script dentro de la carpeta moudules, con el nombre ``parImpar.js` Aqui vivira l codigo funcional para mi package

  5. Dentro de parImpar.js creamos una funcion para determinar si un numero es par o impar

  6. Exportar la funcion para que pueda ser utilizada en cualquier parte de mi proyecto

export default determinarParidad;
  1. Importar mi funcion en index.js para que la podemos utilizar (import from -ruta-)
//Importar la funcion desde la ruta especifica 
import determinarParidad from "./modules/parImpar.js";

//Utilizando mi funcion importada
determinarParidad(2369);
determinarParidad(8974);
  1. Modificar el package.json para permitir ejecutar desde module utilizando las configuracion "type": "module"
"name": "npm-parimpar",
  "version": "1.0.0",
  "description": "Permite determinar si un numero es par o es impar ",
  "main": "index.js",
  "type": "module",
  1. Ejecuto mi aplicacion en CLI utilizando el comando
Erick  …\CH-39\JS-NPM\npm-parImpar   v21.6.1  ♥ 13:52 > node index.js
El número 2369 es impar
El número 8974 es par


 Tambien podemos utilizaar `node --watch index.js`
---

# Pasos para publicar el package en npm

1. Registrar en el sitio de npm

[npm WebSite](https://www.npmjs.com/)

2. Modificar el `name` en `package.json` para que sea unico

3. En CLI iniciamos sesion con el comando 

```sh
    npm login
Erick  …\CH-39\JS-NPM\npm-parImpar   v21.6.1  ♥ 13:53  npm login    
npm notice Log in on https://registry.npmjs.org/
Login at:
https://www.npmjs.com/login?next=/login/cli/eac3ef86-512a-4cd2-a2ce-061a598fd307
Press ENTER to open in the browser...

Logged in on https://registry.npmjs.org/.
  1. Seguimos el proceso de autenticacion de 2 pasos en eel correo

  2. Regresamos a CLI y nos muestra el mensaje `Logged in on https://registry.npmjs.org/.``

  3. Lo unico que queda es publicar el package desde CLI con visibilidad publica usando el comando:

    npm publish --access=public

Erick  …\CH-39\JS-NPM\npm-parImpar   v21.6.1  ♥ 15:38  npm publish --access=public    
npm notice 
npm notice 📦  [email protected]
npm notice === Tarball Contents ===
npm notice 1.8kB README.md
npm notice 192B  index.js
npm notice 335B  modules/parImpar.js
npm notice 343B  package.json
npm notice === Tarball Details ===
npm notice name:          erickomar--parimpar
npm notice version:       1.0.0
npm notice filename:      erickomar--parimpar-1.0.0.tgz
npm notice package size:  1.3 kB
npm notice unpacked size: 2.6 kB
npm notice shasum:        59e9199bba0dfb7c3382dd20e804b06dde140901
npm notice integrity:     sha512-3yotqSKkp15Mo[...]+3OJZk7xUwS6A==
npm notice total files:   4
npm notice
npm notice Publishing to https://registry.npmjs.org/ with tag latest and public access
Authenticate your account at:
https://www.npmjs.com/auth/cli/613aa78b-1c1d-4ef9-9db5-5570fbcc3985
Press ENTER to open in the browser...

+ [email protected]