mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* Added high level roadmap. * Changed to funtion.yaml. * Added logo * updating quickstart code example, WIP, waiting on another merge. * Minor updates. * Changed function.yaml to func.yaml and updated fnctl README.
19 lines
493 B
Markdown
19 lines
493 B
Markdown
## Quick Example for a NodeJS Function (4 minutes)
|
|
|
|
This example will show you how to test and deploy a Node function to IronFunctions.
|
|
|
|
```sh
|
|
# create your func.yaml file
|
|
fnctl init <YOUR_DOCKERHUB_USERNAME>/hello
|
|
# build the function
|
|
fnctl build
|
|
# test it
|
|
cat hello.payload.json | fnctl run
|
|
# push it to Docker Hub for use with IronFunctions
|
|
fnctl push
|
|
# Create a route to this function on IronFunctions
|
|
fnctl routes create myapp /hello
|
|
```
|
|
|
|
Now surf to: http://localhost:8080/r/myapp/hello
|