0.12.0 • Published 11 months ago

@weave-js/web v0.12.0

Weekly downloads
105
License
MIT
Repository
-
Last release
11 months ago

@weave-js/web

A Web Gateway for weave microservice architectures.

Build Status NPM Version Build Status Downloads

Features

  • serve static files
  • support HTTP & HTTPS
  • HTTP2
  • Routing
  • Support for global and route level middlewares
  • alias names (with named parameters & REST shorthand)
  • whitelist
  • multiple body parsers (json, urlencoded)
  • CORS headers
  • ETags
  • Rate limiter
  • before & after call hooks
  • Buffer & Stream handling
  • middleware mode (use as a middleware in ExpressJS Application)
  • support authorization

Install

npm install @weave-js/web

Usage

Run with default settings

This example uses API Gateway service with default settings. You can access to all services (including internal $node services) via http://localhost:3000/

let { Weave } = require('@weave-js/core')
let ApiMixin = require('@weave-js/web')

let broker = new Weave({ logger: console })

// Create a service
broker.createService({
    name: 'test',
    actions: {
        hello() {
            return 'Hello API Gateway!'
        }
    }
})

// Load API Gateway
broker.createService(ApiMixin)

// Start server
broker.start()

Test URLs:

  • Call test.hello action: http://localhost:3000/test/hello

  • Get health info of node: http://localhost:3000/~node/health

  • List all actions: http://localhost:3000/~node/actions

Documentation

Please read our documentation on weave site

0.12.0

11 months ago

0.11.0

1 year ago

0.10.1

2 years ago

0.10.2

2 years ago

0.10.0

2 years ago

0.9.1

3 years ago

0.9.0

3 years ago

0.9.0-beta.4

3 years ago

0.9.0-beta.3

3 years ago

0.9.0-beta.2

3 years ago

0.9.0-beta.1

3 years ago

0.8.0

3 years ago

0.7.0-rc.6

4 years ago

0.7.0-rc.5

4 years ago

0.7.0-beta.1

5 years ago

0.4.22-alpha.61

5 years ago

0.4.22-alpha.57

5 years ago

0.7.0-rc.4

5 years ago

0.7.0-rc.3

5 years ago

0.7.0-rc.2

5 years ago

0.7.0-rc.1

5 years ago

0.4.21

5 years ago

0.4.20

5 years ago

0.4.19

5 years ago

0.4.18

5 years ago

0.4.17

5 years ago

0.4.16

5 years ago

0.4.15

5 years ago

0.4.14

5 years ago

0.4.13

5 years ago

0.4.12

5 years ago

0.4.11

5 years ago

0.4.10

6 years ago

0.4.9

6 years ago

0.4.7

6 years ago

0.4.6

6 years ago

0.4.5

6 years ago

0.4.0-rc.10

6 years ago

0.4.0-rc.9

6 years ago