README
Arc Example App
- This app demonstrates how to create a microservice, and add functionality with an extension using Arc.
Install
npm install arc.app-example
Microservice
/microservice/example/index.js
module.exports = () => {
return `Hello, World!`;
};
- A micoservice at it's most basic is just a node module.
- If you want to know more about microservices, check the Arc wiki.
Examples | Description |
---|---|
basic_example.js | This is a basic example of that has a single microservice that returns Hello World! |
Run
npm start
- View the API by visiting
http://localhost:8080