
NoPENoPE provides the basics for a distributed system. The NoPE basically links all modules to a system. It hides the distribution. The modules can run on multiple nodes (computation nodes) and NoPE takes care of coupling them, executing services and subscribing to events etc.
In Addtion, NoPE provides a basic concept for a front-end. This front-end will run on next.js.
Nope is availabel in multiple Programming-Languages:
nodejspythonThis approach works on windows only.
To install NoPE just extecute the 00-install.bat-Batch-File in the root-directory.
Make shure you run the following tasks
npm install./00-compile.bat (on windows) or ./00-compile.sh (on linux)./05-link.bat (on windows) or ./05-link.sh (on linux)After installation you can use the following cli-tool:
nope-js
Please select the option you want. Therefore add one of the following options:
help Show this help.run Start a NoPE-Backend.init Initialize a new project. This project is empty.conf Trys to update the configuration file. scan-ui Scans and extracts the provided uis. upload-ui Uploads the determined ui-fileservice Generate Helper Files to provide services repl Opens an interactive console.Checkout our changelog.
NoPE in 5 minNodejs ProjectGet started by creating a new project distributed using NoPE.
npm install -g nope-js-node
nope-js project create
This should open a cli like that:
HelloWorldtypescript as project typecd ./HelloWorld )This creates the following folder structure:
By using the project-tool the following features are added to the project:
TypescriptOur goal is to define a greeting service
The service creates a greeting message for a person.
This service is independent of how many times it has been called. Our functionality is stateless, this allows us to use a service.
CLI to generate the Serviceproject-tool to create the servicenope-js project edit
add, to add a new elementservice, because we want to create a serviceHelloWorldCreation of the corresponding files and imports is done automatically
This will update our files in the Folder:
Now NoPE defined a new service file (HelloWorld.functions.ts) for us:
import { HelloWorldService } from "../types/interfaces";
import { exportAsNopeService, getNopeLogger } from "nope-js-node";
const logger = getNopeLogger("HelloWorld-service")
// Here is our main implementation we need to change
export async function _HelloWorldService (greetings: string) {
// Please overwrite me.
logger.debug("calling service 'HelloWorld' with the following parameters:", greetings)
return "Hello " + greetings + "!"
}
// The exported Service.
export const HelloWorld: HelloWorldService = exportAsNopeService(_HelloWorldService, {
id: "HelloWorld",
schema: {},
});
In that file, you will find a template for the service we want to implement. By default, the newly created service implements the hello-world behavior. This must changed. In our case it matches the desired behavior.
All services must be implemented
asyncmanner. This is necessary so that the runtime is not blocked.
We now want to describe our service, that it can be used correctly at different Runtimes. Therefore we will add an schema to the exported service. This Schema follows the definition of a JSON-Schema:
export const HelloWorld: HelloWorldService = exportAsNopeService(_HelloWorldService, {
id: "HelloWorld",
// We describe our interface as follows:
schema: {
// Enhanced Type of the JSON-Schema. We added the type: "function" for this purpose
type: "function",
// To describe the used inputs of a function or serive we added the field "inputs" to the schema.
// It contains a list of all required inputs.
inputs: [
{
// The Description of the Parameter
description: "The name which should receive a Greeting",
// Its used name in the function (see the arguments of the function)
name: "greetings",
// The Schema follows a default JSON-Schema
schema: {
type: "string"
}
}
],
// To describe the return of a function we added the field "outputs". It contains a
// JSON-Schema Object.
outputs:{
type: "string",
// We provide some extra Info for the other users.
description: "The greeting Message!"
}
},
});
Luckily, Typescript will help us during this process due to the typing system of Typescript.
Before we are able to execute our service we have to compile our code to pure javascript.
npm install
./00-compile.sh
This will compile the Typescript files to pure javascript. Additionally the Files will be compiled to a specific browser version.
To run the service and distribute to different NoPE-Runtimes we have to determine a configuration:
nope-js conf -d dist
The cli will find all defined services or modules exposed in a so called NoPE-Package (This has been created automatically during the initalization of the project). The tool will store its results in the following configuration (located at ./config/config.json):
{
// Our toool fund the following functions:
"functions": [
{
"path": "dist\\src\\HelloWorld.functions.js",
"functions": []
}
],
// Additionally the tool found our `HelloWorld` Project as "module"
"packages": [
{
"nameOfPackage": "HelloWorld",
"defaultInstances": [],
"autostart": {},
"path": "dist\\src\\HelloWorld.package.js"
}
]
}
Finally we are ready to distribute our service by using the command:
nope-js run
This should produce the following output.
Currently our service is only run internally (nope is not connected and runs without an external connection layer). To check and play with the distribution, we kill our old process (ctrl+c) create a separate process (e.g. a bash) and provide a serve:
nope-js run -c io-server
This will spool up a socket-io server on our localhost.
Afterwards we will restart our Runtime hosting the created service using io-sockets as connection layer:
nope-js run -c io-client
Now we are able to start our interact-tool to manually execute our process:
nope-js interact -c io-client -s
To use the interact-tool follow the questions:
What do you want to do?
inspectWhat do you want to inspect?
serviceHelloWorld-Service (see 1)Now we want to execute this service. Therefore we navigate back to the main menu
Now we select execute and afterwards service because we want to execute our service
Now the Tool renders the available services and we select HelloWorld (see 2) and it will render the previously defined Schema.
Now we have to enter the inputs required by the Service:
JSON Data.enterExecuting services with the interact tool will perfom function immedialty. If you integrated Hardware be aware of that.
The Tool shows the result (see 4)
You are now running a distributed System using remote procedure calls
Generated using TypeDoc