@alinex/core
v1.11.0
Published
Central module for the alinex systems.
Downloads
87
Readme
Alinex Core
The core module is a base for all of my Alinex modules. It has some common methods which are necessary in nearly any of my packages.
At the moment it contains:
- Logo - a method to present ASCII art command line logos
A complete help with examples can be found at alinex.gitlab.io/node-core.
Usage
To include this in your module install it:
npm install @alinex/core --save
Now only include it in your code and call it's methods:
import core from '@alinex/core';
// init signal exit handler
core.init();
// output logo on console
// eslint-disable-next-line no-console
console.log(core.logo('Portal Application'));
// exit with code and message
core.exit(100, new Error("Command already running, can't be called in parallel!"));
Documentation
Find a complete manual under alinex.gitlab.io/node-core.
If you want to have an offline access to the documentation, feel free to download the PDF Documentation.
License
(C) Copyright 2016, 2019 - 2023 Alexander Schilling
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.