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

@raillemain/testhello

v0.0.7

Published

hello world

Downloads

9

Readme

Utilisation du Module

const HelloWorld = require('@raillemain/testhello');
HelloWorld();

Hello world Test Formation Module

Creation d'un Module Node (version terminal Linux)


On va utiliser mkdir nomdudossier dans un terminal pour la création de notre dossier.

Puis il est IMPORTANT d'utiliser la fonction npm init afin de commencer le project.

Il va afficher:

package name: (nod-testhello) @raillemain/testhello
version: (1.0.0) 0.0.1
description: hello world
entry point: (index.js)
test command:
git repository:
keywords: fabrique numerique pau
author: [email protected]
license: (ISC)
About to write to /var/www/html/Cours/nod-testhello/package.json:\

{
     "name": "@raillemain/testhello",
     "version": "0.0.1",
     "description": "hello world",
     "main": "index.js",
     "scripts": {
         "test": "echo "Error: no test specified" && exit 1"
     },
     "keywords": [
         "fabrique",
         "numerique",
         "pau"
     ],
     "author": "[email protected]",
     "license": "ISC"
}

Is this OK? (yes)

Tout ceci est le processus de npm init.

  1. Il va te demander le nom du package (du project) qui est renomable;
  2. La version que vous donné à votre module
  3. Une description du module
  4. Les mots clé qu'on peu saisir sur la barre de recherche de npmjs
  5. L'auteur du project
  6. La license
  7. Il vous montre le rendu et demande si c'est bon.

Si vous ne voulez pas vous embêter, vous pouvez faire entrer sur toute la démarche

Ensuite utiliser il faut créer l'entry point avec le nom donner.

On le fait avec nano index.js. On y insert un contenu (exemple):

function hello(){
     console.log("Hello fabrique numérique")
}

module.exports = hello

Mise en ligne du Module (termnial linux)


Pour la mise en ligne il va falloir se connecter à votre compte npmjs npm login.

Attention si vous n'avez pas de compte il faut s'inscire sur npmjs!!!

Ensuite il va falloir faire un npm publish, si vous ne pouvez pas publier c'est parce que vous n'avez pas configurer votre npm avec npm config set access public.

Pour le vérfier il suffit de faire cat /home/nomdevotresesion/.npmrc. Ce message va apparaitre:

//registry.npmjs.org/:_authToken=npm_ATD...
access=public

Après tout ces étapes, vous devez obtenir ceci:

npm notice
npm notice 📦 @raillemain/[email protected]
npm notice === Tarball Contents ===
npm notice 86B index.js
npm notice 333B package.json
npm notice === Tarball Details ===
npm notice name: @raillemain/testhello
npm notice version: 0.0.1
npm notice package size: 404 B
npm notice unpacked size: 419 B
npm notice shasum: c5701f8f...
npm notice integrity: sha512-Eq7UgEdJMtNFy[...]JNUh3KcGRoqxg==
npm notice total files: 2
npm notice
+ @raillemain/[email protected]

Utilisation du Module


Il suffit de commencer un project avec node et de faire un npm i nomdupackage.

Puis le récupérer avec avec un require ou import from .

Mettre une nouvelle version du module


Il va falloir faire un npm version patch. Puis npm publish.