Overview
Comment: | [njs] Change directory for modules |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | njs | nodejs |
Files: | files | file ages | folders |
SHA3-256: |
6076fe388a857d79188538fcd8c0f6a2 |
User & Date: | IllusionPerdu on 2018-10-15 15:54:09 |
Original Comment: | [js] Change directory for modules |
Other Links: | branch diff | manifest | tags |
Context
2018-10-15
| ||
15:56 | [njs] Add files for modules check-in: 5b89e2f4fe user: IllusionPerdu tags: njs, nodejs | |
15:54 | [njs] Change directory for modules check-in: 6076fe388a user: IllusionPerdu tags: njs, nodejs | |
11:44 | [njs] Remove example use check-in: e1e718ac39 user: IllusionPerdu tags: njs, nodejs | |
Changes
Name change from gc_lang/fr/nodejs/gramma-cli.bat to gc_lang/fr/nodejs/cli/bin/gramma-cli.bat.
Renamed and modified gc_lang/fr/nodejs/gramma-cli.js [af7143ae7f] to gc_lang/fr/nodejs/cli/bin/gramma-cli.js [952ea8ac82].
|
Name change from gc_lang/fr/nodejs/script.verf to gc_lang/fr/nodejs/cli/data/script.gramma.
︙ |
Name change from gc_lang/fr/nodejs/minimist.js to gc_lang/fr/nodejs/cli/lib/minimist.js.
︙ |
Renamed and modified gc_lang/fr/nodejs/readme.md [92fc7afa39] to gc_lang/fr/nodejs/cli/readme.md [595855cb69].
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | - + + + + + + + | # Client/Serveur de Grammalecte pour NodeJS |
︙ | |||
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | + - + + | ├ salait ├ salut └ salât GrammaJS> exit ``` Exemple pour les vérifications portant sur un texte: ``` CMD> gramma-cli -i Bienvenu sur Grammalecte pour NodeJS!!! GrammaJS> format > salut,les copains!!! > vous allez bien ? > /format Mise en forme: salut, les copains!!! vous allez bien ? GrammaJS> exit ``` **Note : Vous pouvez vérifier tout un fichier avec pour chaque ligne ayant une commande :** **cat script.verf | gramma-cli -i** |
︙ | |||
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | + + - | CMD> ``` ## Serveur Le serveur supporte les requêtes POST et GET... Par défaut le port d'écoute est le 2212. ## Les fichiers grammalecte/* : Tout le contennu de Grammalecte pour javascript api.js : Un warper pour simplifié l'utilisation de Grammalecte gramma-cli.bat : Fait juste un appel «node gramma-cli.js .argument(s)» gramma-cli.js : Le code principale pour la console minimist.js : Une librairie pour simplifier le parssage des arguments readme.md : Le fichier que vous lisez (ou pas) actuellement ;) script.verf : Exemple de script pour faire des vérifications automatiques * (sous widows) type script.verf | gramma-cli -i * (sous linux) cat script.verf | gramma-cli -i |
Renamed and modified gc_lang/fr/nodejs/api.js [c4a1821b48] to gc_lang/fr/nodejs/core/api.js [b4423d8bc1].
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | - + - + - + | /* ! Grammalecte, grammar checker ! API pour faciliter l'utilisation de Grammalecte. */ /* jshint esversion:6, -W097 */ /* jslint esversion:6 */ /* global require, exports, console */ "use strict"; class GrammarChecker { |
︙ |