Go to file
Martin Karkowski 20112adbe5 # 1.2.0
- Added:
  - `lib/cli/nope` adding scan for ui service
  - `lib/decorators/container`: Main Container, holding all `methods` and `classes`. Use `getCentralDecoratedContainer()` to get this decorator.
  - `types/nope/nopePackage.interface` added `IClassDescription` which contains the class description used in the Package Description.
  - `logger/nopeLogger`: added methods: `enabledFor`, `enableFor`, `shouldLog`
  - `package.json`: installed types of `ace` text editor.
  - `ui/helpers.browser`: Created `convertInstanceRenderPage` and `IUiDefinition`
  - `ui/helpers.nodejs`: Added a Helper to write the Ui-File (`writeUiFile`) and parse its arguments (`readInwriteUiFileArgs`)
  - `ui/index.*`: Crated the corresponding exports.
- Modified:
  - `lib/decorators/*` Adding the main `container` where every function, service method etc is added. All decorators now safe the decorated elements in the container.
  - `helpers/json`: Adding `BEGIN_STR` and `END_STR` for parsing functions as constants.
  - `logger/eventLogging`: simplify `useEventLogger`
  - `logger/index.browser`: Adating exports.
  - `loader/loadPackages`: Modifing `IPackageConfig` now extends Partial the `IPackageDescription`
  - `types/ui/editor/IEditPage`: adapting Type of `getData` to `T`->`any`. Adapting the return of `getPorts` (The Ports will be generated in the ui then)
  - `types/ui/editor/helpers.interface`: Adapting the `w2ui` and added `w2uiHelpers` and added `ace`. Rearanging `IRenderData` element. to compact the data.
  - `types/ui/editor/render.callbacks`: Rearange the Generic Type of `TRenderInstancePage` and Renaming `TCreatorPage` to `TInstanceManagerPage`. Adapting the `option` of `TInstanceManagerPage` regarding the `createInstance` and `instances`
  - `types/ui/editor/index`: Adapting the Exports.
  - `lib/index.browser`: Exporting `ui` elements
  - `lib/index.nodejs`: Exporting `ui` elements
  - `lib/types/index`: Exporting `ui` elements
- Fixes:
  - `types/nope/nopeInstanceManager.interface`: Fixing Type of createInstance. Now the Type `I` extends `INopeModule` instead of being set to `IGenericNopeModule`
2022-07-02 11:30:10 +02:00
.vscode Updating to version 0.9.7 2021-08-17 17:52:46 +02:00
bin adding linux helpers 2022-03-21 08:15:05 +01:00
contribute # 1.2.0 2022-07-02 11:30:10 +02:00
helpers Enabling Profiling and small bug-fixes 2022-03-18 09:06:45 +01:00
lib # 1.2.0 2022-07-02 11:30:10 +02:00
public Adding Logos 2022-03-22 21:19:29 +01:00
wiki # 1.1.1 2022-06-27 11:46:29 +02:00
.dockerignore adding docker files 2021-01-21 15:32:51 +01:00
.eslintignore Adding formater 2021-11-25 08:41:16 +01:00
.eslintrc.json Adding formater 2021-11-25 08:41:16 +01:00
.gitignore Fixing to update stuff to the library 2022-01-17 18:53:06 +01:00
00-compile.bat Enabling Profiling and small bug-fixes 2022-03-18 09:06:45 +01:00
00-compile.sh adding linux helpers 2022-03-21 08:15:05 +01:00
05-link.bat - Fixes: 2022-03-19 07:39:34 +01:00
05-link.sh adding linux helpers 2022-03-21 08:15:05 +01:00
10-push-to-npm.bat Fixing to update stuff to the library 2022-01-17 18:53:06 +01:00
CHANGELOG.md # 1.2.0 2022-07-02 11:30:10 +02:00
Dockerfile adding docker files 2021-01-21 15:32:51 +01:00
LICENSE removing old files. 2022-01-17 15:39:48 +01:00
nopeconfig.json Moving Files and fix the Server Architecture 2020-11-12 17:07:05 +01:00
package-lock.json # 1.2.0 2022-07-02 11:30:10 +02:00
package.json # 1.2.0 2022-07-02 11:30:10 +02:00
PREPARE_VSCODE.md removing old files. 2022-01-17 15:39:48 +01:00
README.md # 1.0.28 2022-03-22 21:22:37 +01:00
tsconfig.browser.json v1.1.0 - adding ui types 2022-06-24 07:45:01 +02:00
tsconfig.json v1.1.0 - adding ui types 2022-06-24 07:45:01 +02:00
tsconfig.py.json small fixes for the imports 2022-06-22 20:10:53 +02:00
webpack-typescript.config.js Fixing to update stuff to the library 2022-01-17 18:53:06 +01:00

No Programming Environment - NoPE

NoPE 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:

  • nodejs
  • python

Installation.

Installing using Batch-File (Windows ONLY)

This approach works on windows only.

To install NoPE just extecute the 00-install.bat-Batch-File in the root-directory.

Manual Installation

Make shure you run the following tasks

  1. npm install
  2. npx tsc -p ./tsconfigBackend.json --pretty
  3. npm link

Usage

NoPE - Command Line Interface.

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 - Opens the Help
  • run - Start a NoPE-Backend.
  • init - Initialize a new project. This project is empty.
  • scan - Trys to update the configuration file.

Changelog

Checkout our changelog.