• Stars
    star
    813
  • Rank 54,020 (Top 2 %)
  • Language
    JavaScript
  • Created over 11 years ago
  • Updated about 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

HTTP for JavaScript

build status npm package

Mach is an HTTP server and client library that runs in both node.js and the browser. It has the following goals:

  • Simplicity: straightforward mapping of HTTP requests to JavaScript function calls
  • Asynchronous: responses can be deferred using Promises/A+ promises
  • Streaming: request and response bodies can be streamed
  • Composability: middleware composes easily using promises
  • Robustness: promises propagate errors up the call stack, simplifying error handling

Servers

Writing a "Hello world" HTTP server in Mach is simple.

var mach = require('mach');

mach.serve(function (conn) {
  return "Hello world!";
});

All mach applications receive a single argument: a Connection object. This object contains information about both the request and the response, as well as metadata including the method used in the request, the location of the request, the status of the response, and some helper methods.

Applications can send responses asynchronously using JavaScript promises. Simply return a promise from your app that resolves when the response is ready.

var app = mach.stack();

app.use(mach.logger);

app.get('/users/:id', function (conn) {
  var id = conn.params.id;

  return getUser(id).then(function (user) {
    conn.json(200, user);
  });
});

The call to app.use above illustrates how middleware is used to compose applications. Mach ships with the following middleware:

Please check out the source of a middleware file for detailed documentation on how to use it.

Clients

Writing an HTTP client is similarly straightforward.

var mach = require('mach');

mach.get('http://twitter.com').then(function (conn) {
  console.log(conn.status, conn.response.headers, conn.responseText);
});

By default client responses are buffered and stored in the responseText connection variable for convenience. However, if you'd like to access the raw stream of binary data in the response, you can use the binary flag.

var fs = require('fs');

mach.get({
  url: 'http://twitter.com',
  binary: true
}).then(function (conn) {
  conn.responseText; // undefined
  conn.response.content.pipe(fs.createWriteStream('twitter.html'));
});

Proxies

Because all Mach applications share the same signature, it's easy to combine them in interesting ways. Mach's HTTP proxy implementation illustrates this beautifully: a proxy is simply an application that forwards the request somewhere else.

var proxyApp = mach.createProxy('http://twitter.com');

// In a server environment we can use the mach.proxy middleware
// to proxy all requests to the proxy's location.
app.use(mach.proxy, proxyApp);

// In a client application we can call the proxy directly to
// send a request to the proxy's location.
mach.post(proxyApp, {
  params: {
    username: 'mjackson'
  }
});

Installation

Using npm:

$ npm install mach

Or, include lib/umd/mach.min.js in a <script> tag:

<script src="mach.min.js"></script>

Issues

Please file issues on the issue tracker on GitHub.

Tests

To run the tests in node:

$ npm install
$ npm test

The Redis session store tests rely on Redis to run successfully. By default they are skipped, but if you want to run them fire up a Redis server on the default host and port and set the $WITH_REDIS environment variable.

$ WITH_REDIS=1 npm test

To run the tests in Chrome:

$ npm install
$ npm run test-browser

Influences

License

MIT

More Repositories

1

unpkg

The CDN for everything on npm
JavaScript
2,880
star
2

expect

Write better assertions
JavaScript
2,291
star
3

http-client

Compose HTTP clients using JavaScript's fetch API
JavaScript
506
star
4

web-starter

Build and deploy a React website quickly on Heroku
JavaScript
417
star
5

citrus

Parsing Expressions for Ruby
Ruby
401
star
6

strata

A modular, streaming HTTP server for node.js
JavaScript
365
star
7

then-redis

A fast, promise-based Redis client for node.js
JavaScript
315
star
8

shadowbox

A beautiful, versatile lightbox for photos and videos
JavaScript
296
star
9

rollup-plugin-url-resolve

Use URLs in your Rollup imports
JavaScript
135
star
10

react-loop-2019

Notes and code examples from my React Loop 2019 Keynote
JavaScript
116
star
11

resolve-pathname

Resolve URL pathnames using JavaScript
JavaScript
63
star
12

expect-element

Write better assertions for DOM nodes
JavaScript
61
star
13

my-react

An experimental drop-in replacement for React without ES6 classes or "this"
JavaScript
58
star
14

dotfiles

My dotfiles
Vim Script
57
star
15

unpkg-demos

Experiments in how to use unpkg
HTML
54
star
16

history-server

An HTTP server for single-page apps that use the HTML5 history API
JavaScript
52
star
17

rack-accept

HTTP Accept* for Ruby/Rack
Ruby
46
star
18

mint

A small, fast documentation generator for literate-style programming
JavaScript
41
star
19

sinatra-session

Simple, secure sessions for Sinatra
Ruby
38
star
20

firework

A distributed, fault-tolerant work queue for Firebase
JavaScript
38
star
21

s3-thumb-server

Serve thumbnails of images stored on S3 over HTTP
JavaScript
35
star
22

ember-firebase

Firebase bindings for Ember.js
JavaScript
32
star
23

value-equal

Are these two JavaScript values equal?
JavaScript
31
star
24

monterey

Minimal OOP for JavaScript
JavaScript
31
star
25

optionparser

Command-line option parser for PHP
PHP
29
star
26

bufferedstream

A robust stream implementation for node.js and the browser
JavaScript
27
star
27

tree-shaking-react-router

Tree-shaking React Router with webpack 4
JavaScript
25
star
28

icare

A badge to promote empathy in software design, craftsmanship, and maintenance
HTML
25
star
29

react-style

Declarative styling for React components
JavaScript
21
star
30

remix-ssg-example

Small example of how to statically generate a Remix site using wget
TypeScript
19
star
31

dropbox-client

Dropbox API v2 client for JavaScript
JavaScript
17
star
32

bencode

Bencode library for PHP
PHP
15
star
33

reactjsday-2018

Demo + slides from my ReactJS Day 2018 keynote in Verona, Italy
JavaScript
14
star
34

symboltable

A Symbols-only Hash for Ruby
Ruby
13
star
35

broccoli-rev

A Broccoli plugin for adding revision checksums to file names
JavaScript
13
star
36

yuicompressor

A YUI JavaScript and CSS compressor wrapper for Ruby and JRuby
Ruby
12
star
37

Fullscreen

A fullscreen sample app for Cocoa with MacRuby
Ruby
12
star
38

usererror

A base class for JavaScript errors
JavaScript
12
star
39

react-router-examples

Code examples for React Router v6
TypeScript
12
star
40

plural

Pluralization library for PHP
PHP
12
star
41

grand

Generate random data in JavaScript
JavaScript
12
star
42

babel-plugin-import-visitor

Visit all import sources in Babel
JavaScript
10
star
43

then-couchdb

A promise-based CouchDB client for node.js
JavaScript
9
star
44

mwrc2012

Sample code from my talk at MWRC 2012
Ruby
8
star
45

chatter

A little chat server for #CodeClass
JavaScript
6
star
46

markdown

Markdown as a Service
Ruby
5
star
47

http-client-cookie-jar

Cookie jar middleware for http-client
JavaScript
5
star
48

stratajs.org

The web site for the Strata web framework
JavaScript
5
star
49

maker

Small library for quickly constructing large segments of HTML in JavaScript
JavaScript
5
star
50

react-router-preload-test

Testing out preloading routes in React Router with React Suspense
JavaScript
4
star
51

sinatra-spec

Simple specs for Sinatra apps using MiniTest
Ruby
3
star
52

broccoli-select

A Broccoli plugin for selecting files based on glob patterns
JavaScript
3
star
53

jview

A subclass of jQuery.fn for creating views in JavaScript
JavaScript
3
star
54

sequel-factory

Simple, powerful factories for Sequel models
Ruby
3
star
55

describe-property

Define JavaScript object properties quickly with ES5 defaults
JavaScript
3
star
56

mwrc2010

Rack For Web Developers - My presentation from MountainWest RubyConf 2010
Ruby
2
star
57

rollup-watch-dir

JavaScript
2
star
58

esbuild-node-builtins-sideeffects

JavaScript
2
star
59

html5-devconf-may2014

The slides and examples from my presentation at HTML5 DevConf on May 22, 2014
JavaScript
2
star
60

react-router-monorepo-stub

JavaScript
2
star
61

esbuild-empty-file-test

JavaScript
2
star
62

rollup-plugin-babel-bug

JavaScript
2
star
63

rubyconf2010

Grammars, Parsers, and Interpreters. In Ruby. ~ My presentation from RubyConf 2010
Ruby
2
star
64

jquery-pop

Painless views as models for jQuery
1
star
65

jdrag

Simple drag and drop for jQuery
JavaScript
1
star
66

redemption-from-callback-hell

JavaScript
1
star
67

mjackson.me

JavaScript
1
star
68

JavaScriptObjectsAndPatterns

Some code examples for a class I did for Twitter's HackWeek Q4 2012
JavaScript
1
star
69

mwrc2011

My presentation from MWRC 2011
1
star
70

hoedown2010

My presentation & code for the Ruby Hoedown 2010
1
star