Grammalecte  note.md at [24d6c32a9a]

File gc_lang/fr/nodejs/note.md artifact 55b550e7af part of check-in 24d6c32a9a


# Note pour le développement pour NodeJS

## Commande pour définir l’utilisation d’un paquetage local

```
cd core
npm link
cd ..
cd cli
npm link grammalecte
npm install --global
cd ..
```

## Commande désinstaller le paquetage local et son utilisation

```
npm rm grammalecte --global
cd cli
npm unlink grammalecte
npm rm grammalecte-cli --global
cd ..
```