An open API service indexing awesome lists of open source software.

https://github.com/0k/node-request

Node request implementation
https://github.com/0k/node-request

Last synced: 12 months ago
JSON representation

Node request implementation

Awesome Lists containing this project

README

          

# -*- ispell-local-dictionary: "english" -*-

#+TITLE: Node httpRequest implementation

This packages holds implementation of =HttpRequest= (from
=0k/types-request=), a simple http request facility.

* Adding =@0k/node-request= to your project

From the root of your project:

#+begin_src sh
npm install --save @0k/node-request
#+end_src

Or better, as =node-request= is still in early release,

#+begin_src sh
npm install --save 0k/node-request#master
#+end_src

To be sure to get the latest version, relaunch this last command
whenever you want to update.

* Developer

** Building the project from fresh clone

#+begin_src sh
npm install
#+end_src

** Transpilation to JavaScript

#+begin_src sh
npx tsc
#+end_src

or with watch support:

#+begin_src sh
npx tsc -w
#+end_src