All Projects → leinue → microless

leinue / microless

Licence: Apache-2.0 license
Using docker and nodejs to build Microservice

Programming Languages

javascript
184084 projects - #8 most used programming language
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to microless

Microless
Using docker and nodejs to build Microservice
Stars: ✭ 14 (-12.5%)
Mutual labels:  faas, koajs
openwhisk-runtime-python
Apache OpenWhisk Runtime Python supports Apache OpenWhisk functions written in Python
Stars: ✭ 39 (+143.75%)
Mutual labels:  faas
xkcd-excuse-generator
Serverless image generator that uses XKCD comic as basis for _all_ excuses!
Stars: ✭ 63 (+293.75%)
Mutual labels:  faas
faas-fargate
OpenFaaS on AWS Fargate. Open source Functions as a Service without any infrastructure to manage
Stars: ✭ 50 (+212.5%)
Mutual labels:  faas
aws-lambda-r
Using R on AWS Lambda
Stars: ✭ 51 (+218.75%)
Mutual labels:  faas
swarm-gcp-faas
Setup OpenFaaS on Google Cloud with Terraform, Docker Swarm and Weave
Stars: ✭ 15 (-6.25%)
Mutual labels:  faas
honeypie
A FaaS for converting your Google Forms into an API.
Stars: ✭ 17 (+6.25%)
Mutual labels:  faas
kubeless
Kubernetes Native Serverless Framework
Stars: ✭ 6,848 (+42700%)
Mutual labels:  faas
fn-helm
Helm Chart for Fn
Stars: ✭ 51 (+218.75%)
Mutual labels:  faas
hex-example
Little API to demonstrate various microservice design principles and technologies
Stars: ✭ 131 (+718.75%)
Mutual labels:  faas
mindjs
Minimalistic, pure Node.js framework superpowered with Dependency Injection 💡 💻 🚀
Stars: ✭ 17 (+6.25%)
Mutual labels:  koajs
openwhisk-runtime-go
Apache OpenWhisk Runtime Go supports Apache OpenWhisk functions written in Go
Stars: ✭ 31 (+93.75%)
Mutual labels:  faas
go-appsync-graphql-cloudformation
AWS AppSync GraphQL API Proxy with Lambda, CloudFormation, and SAM
Stars: ✭ 28 (+75%)
Mutual labels:  faas
koa
A golang framework like koa.js and has the best performance with net/http.
Stars: ✭ 30 (+87.5%)
Mutual labels:  koajs
openfaas-rstats-templates
OpenFaaS templates for R
Stars: ✭ 17 (+6.25%)
Mutual labels:  faas
koa-smart
A framework base on Koajs2 with Decorator, Params checker and a base of modules (cors, bodyparser, compress, I18n, etc…) to let you develop smart api easily
Stars: ✭ 31 (+93.75%)
Mutual labels:  koajs
lambda-memory-performance-benchmark
Performance and cost benchmark tool for AWS Lambda on memory sizes 📈⏱
Stars: ✭ 60 (+275%)
Mutual labels:  faas
cli
Autocode CLI and standard library tooling
Stars: ✭ 3,791 (+23593.75%)
Mutual labels:  faas
aws-sdk-extra
The AWS SDK + a handful of extra convenience methods.
Stars: ✭ 18 (+12.5%)
Mutual labels:  faas
tencent-tensorflow-scf
A template project for serverless functions for Tensorflow inference on Tencent Cloud.
Stars: ✭ 38 (+137.5%)
Mutual labels:  faas

arch

Microservice framework for node.js to make container-based microservice web applications and APIs more enjoyable to write. Micro is based on koa.js, allowing you to use all the features that koa has.

Docs

  1. 中文文档

Features

Make microservice reachable

arch

  1. Deploying microservices with docker containers, using docker stack deploy and docker swarm
  2. Transferring the data between the services via JSON strings and RESTful API
  3. Every single serivice has it's own database
  4. API Gateway serves as the controlling unit, which controls the whole system.You can do some universal works like auth or log
  5. Using docker deploy to manage containers and services
  6. Easily Integrated with koa middlewares

Installation

Install Docker

please visit docker doc

ATTENTION: docker swarm and docker-compose is also needed.

Install Microless

Microless requires node v7.6.0 or higher for ES2015 and async function support.

$ npm install microless --save

Getting started

The example shows the ability to start a python container using microless, you can get the source code in folder example

Write Python Code

from flask import Flask

app = Flask(__name__)

@app.route("/")
def hello():
    html = "<h3>Hello {name}!</h3>"
    return html.format(name="world")

if __name__ == "__main__":
    app.run(host='0.0.0.0', port=80)

This program will run a python server at port 80.

Write Dockerfile

# Use an official Python runtime as a parent image
FROM python:2.7-slim

# Set the working directory to /app
WORKDIR /app

# Copy the current directory contents into the container at /app
ADD . /app

# Install any needed packages specified in requirements.txt
RUN pip install Flask

# Make port 80 available to the world outside this container
EXPOSE 80

# Run app.py when the container launches
CMD ["python", "app.py"]

This Dockerfile defines a image which can start a python server at port 80.

Write Compose File

Save as docker-compose.yml

version: "2"
services:
  web:
    image: 'example_web'
    build: .
    ports:
      - "4000:80"

This compose file starts a python container called web with exposed port 4000, which uses the above Dockerfile.

For more details please visit docker docs.

Write Microless Code

// import microless
const Micro = require('microless');

// config restful api routers
const routers = {
  '/': {
    method: 'get' // define the request method
  }
}

var micro = new Micro({

  name: 'test', //project name

  compose: {
    src: './docker-compose.yml' //docker compose file
    dockerfile: '.'
  },

  // router to microservice  
  modems: {

    // name in docker compose files
    web: {
      configs: routers,
    }

  },

  server: {
    port: 3001
  }
});

This will run the service in a docker container named 'example_web_1'.

Then the project will run at port 3001.

When you visit http://locahost:3001, you will see the result from python programs, every single request from http://locahost:3001 will automatically router to the right microservice.

run

Other Configs

Compose

Compose defines the src of file docker-compose and dockefile

  compose: {
    src: './docker-compose.yml', //default is './docker-compose.yml'
    dockerfile: '.' //dockerfile directory, default is .
  }

Modems

Modems mainly defines the router to microservice. Every single request from http://locahost:3001 will automatically router to the right microservice, so your router configs in the microless must as same as the router defined in the microservice.

For example, if you define a container called web in docker-compose.yml, you must write web as a key in modems like this:

  modems: {
    web: {
      configs: routers
    },

    a: {
      configs: aRouters
    },

    ...
  }

Router Configs

A symbol config is like this:

  const routers = {
    '/': {
      //called when route ends
      afterRoute: function(ctx, next, response) {
        ctx.body = response.body;
      },
      method: 'get'
    },

    '/shit/:id': {
      //called when route ends
      afterRoute: function(ctx, next) {
        ctx.body = 'shit api 0.1, params=' + JSON.stringify(this.params);
      },
      method: 'get'
    }
  }

There are two attributes that router config has:

  1. method: required, defines a http request method
  2. afterRoute: optional, called when route ends, you can handle the result from microservice and display it in other way.when you use this attribute, you must write ctx.body = xxx, otherwise you would see a blank page.

P.S. The router follows the koa-router.

Error Handling in Modems

Currently, microless has three error handling methods when modem to a microservice:

  modems: {
    web: {
      configs: routers,

      //called when modem on error
      onError: function(ctx, next, error) {
        ctx.body = error;
      },

      //called when method not supported
      methodNotSupported: function(ctx, next, error) {

      },

      //called when route not found
      routeNotFound: function(ctx, next, error) {

      }
    }
  }
  1. onError: optional, called when modem on error.
  2. methodNotSupported: optional, called when method not supported.
  3. routeNotFound: optional, called when route not found.

Server

Server just has one attribute:

  1. port: required, defines the main port of the service.

Error Handling

  1. onSuccess: optional, called when successfully exectuing docker-compose
  2. onError: optional, called when exectuing docker-compose failed

A complete start code is like this:

const Micro = require('../src');

const routers = {
  '/': {
    //called when route ends
    afterRoute: function(ctx, next, response) {
      ctx.body = response.body;
    },
    method: 'get'
  },

  '/shit/:id': {
    //called when route ends
    afterRoute: function(ctx, next) {
      ctx.body = 'shit api 0.1, params=' + JSON.stringify(this.params);
    },
    method: 'get'
  }
}

var micro = new Micro({

  name: 'test',

  compose: {
    src: './docker-compose.yml',
    dockerfile: '.'
  },

  modems: {
    web: {
      configs: routers,

      //called when modem on error
      onError: function(ctx, next, error) {
        ctx.body = error;
      },

      //called when method not supported
      methodNotSupported: function(ctx, next, error) {

      },

      //called when route not found
      routeNotFound: function(ctx, next, error) {

      }
    }
  },

  server: {
    port: 3001
  },

  //called when successfully exectuing docker-compose
  // onSuccess: function() {

  // },

  //called when exectuing docker-compose failed
  onError: function(error) {
    console.log(error);
  }
});

Enjoy your microservice with docker and nodejs :)

For more visit author's website: ivydom

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].