Coder Social home page Coder Social logo

openfaas-deno-template's Introduction

openfaas-deno-template

a deno template for openfaas

Get the template

faas-cli template store pull deno

Example usage

The function folder already has a demo.ts as a reference.

1. Using the deno template

faas-cli new --lang deno your_function_name

2. Write your own function

create a ts file in your_function_name folder

function fn1() {
  // ...
  return
}

function fn2() {
  // ...
  return
}

// export an object whose keys are function names and values are functions themselves.
export default {
  'fn1': fn1,
  'fn2': fn2
}

3. build and deploy your function

follow https://github.com/openfaas/workshop to build and deploy your function

4. test the function by Http reaquest or OpenFaaS-ui

  1. request
    • method: POST
    • params: through request body in JSON format
      {
        "path": "demo/add",
        "params": {
            "num1": 1,
            "num2": 2
        }
      }
      • path: the function path
      • params: the function params object
  2. response
    {
      "code": 200,
      "data": 3
    }
    code description data
    200 success function return data
    401 error specific error message thrown by function
    403 forbidden "Invalid post body, please use JSON format."
    404 not found "Function not found."

OpenFaaS-ui

openfaas-deno-template's People

Contributors

betterrunner avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.