scribr
v1.0.0
Published
Org files rendered to static web page, with auto generated sidebar
Downloads
13
Readme
- Scribr
- [[https://gitlab.com/reedrichards-javascript/gatsby/grimoire][repo url]]
- Development
- Node Version: 12.16.1 LTS
** Install Node
*** using nvm
**** [[https://github.com/nvm-sh/nvm#installing-and-updating][install nvm]] #+BEGIN_SRC bash :results output curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
#+END_SRC
#+RESULTS:
#+begin_example
=> nvm is already installed in /home/rob/.nvm, trying to update using git
=> => Compressing and cleaning up git repository
=> nvm source string already in /home/rob/.bashrc
=> bash_completion source string already in /home/rob/.bashrc
=> You currently have modules installed globally with `npm`. These will no
=> longer be linked to the active version of Node when you install a new node
=> with `nvm`; and they may (depending on how you construct your `$PATH`)
=> override the binaries of modules installed with `nvm`:
/usr/local/lib
├── [email protected]
├── UNMET PEER DEPENDENCY react@^16.4.2
├── UNMET PEER DEPENDENCY react-dom@^16.4.2
├── [email protected]
├── [email protected]
├── [email protected]
└── [email protected]
=> If you wish to uninstall them at a later point (or re-install them under your
=> `nvm` Nodes), you can remove them from the system Node as follows:
$ nvm use system
$ npm uninstall -g a_module
=> Close and reopen your terminal to start using nvm or run the following to use it now:
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
#+end_example
**** [[https://github.com/nvm-sh/nvm#verify-installation][verify installation]] #+BEGIN_SRC bash command -v nvm
#+END_SRC
**** install node 12.16.1 #+BEGIN_SRC bash nvm install 12.16.1
#+END_SRC