From ad8b878fd7154194786047341c19eabe9d1e2ffd Mon Sep 17 00:00:00 2001 From: Tissevert Date: Sun, 17 May 2020 17:09:15 +0200 Subject: [PATCH] Add usage explanations --- README.md | 42 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9bc115a..6a84417 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # SJW -The Simple Javascript Wrench is a tool made to compile a set of independant Javascript modules into a single executable javascript file as expected by a webbrowser. It allows you to write (relatively) clean Javascript and to package it into one single script that will run once the page loading it is loaded. +The Simple Javascript Wrench is a tool made to compile a set of independant Javascript modules into a single executable javascript file as expected by a web browser. It allows you to write (relatively) clean Javascript and to package it into one single script that will run once the page loading it is loaded. ## How to install @@ -14,6 +14,8 @@ $ cabal new-install sjw ## Using it +### Invocation + SJW is a sort of compiler that expects the path to a source directory as argument and will output (on `stdout` or at the path given with the usual `-o` option) a script containing all the code required by the `Main` module. The `demo/` directory is a simple example of this mechanism (I even committed the output `main.js` by accident but it's actually useful because you can try and generate it locally and check that you get exactly the same result). Run the following from this directory (if you're not used to haskell projects handled with cabal, make sure you have `~/.cabal/bin` in your `$PATH` variable) : @@ -23,3 +25,41 @@ $ sjw demo/src -o demo/main.js ``` Ask `sjw --help` to read more about available options or to print the version of SJW you're using. + +### Everyday usage + +SJW is simple enough that you don't need special commands to list, install or uninstall packages. All those vital needs are achieved by the usual commands your shell provides : `ls`, `cp` or `rm`. + +The default location for the package store is a directory called `.sjw` located directly in your home (as set in your variable `$HOME` or, if unset, the home directory for your user as recorded by the system). This can be overriden by setting the variable `$SJW_PACKAGE_DB` in your environment (for instance by defining it in your shell's profile). + +A package is «installed» by creating a directory there. + +``` +$ cp -R myPackage/src ~/.sjw/myPackage +``` + +The module tree starts directly under this directory. So, if `myPackage` exposes three modules `Huey`, `Dewey` and `Louie` : + +``` +$ ls myPackage/src +Huey.js Dewey.js Louie.js +``` + +Then, after the previous `cp` command, you can use in your code + +``` +import Huey; +import Dewey; +import Louie; +``` + +and compile it with `sjw -I myPackage`. That's it. So, of course you can list all installed packages with : + +``` +$ ls ~/.sjw +``` +And remove any package with : + +``` +$ rm -r ~/.sjw/myPackage +```