Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 322 Bytes

File metadata and controls

19 lines (16 loc) · 322 Bytes

云函数最小运行时环境服务

快速开始

# 运行
yarn start

# 请求示例
curl --location --request POST 'localhost:3000/inner-cgi/invoke' \
--header 'Content-Type: application/json' \
--data-raw '{
    "code": "module.exports = (a, b) => a + b",
    "args": [
        1,
        2
    ]
}'