https://github.com/vukbgit/gordion
a Node.js web app engine
https://github.com/vukbgit/gordion
Last synced: 3 months ago
JSON representation
a Node.js web app engine
- Host: GitHub
- URL: https://github.com/vukbgit/gordion
- Owner: vukbgit
- License: mit
- Created: 2021-05-06T08:51:25.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-25T10:18:31.000Z (over 3 years ago)
- Last Synced: 2025-02-08T08:32:41.504Z (4 months ago)
- Language: TypeScript
- Size: 285 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gordion
A Node.js typescript web app engine## Basic concepts ##
* being as simple as possible
* expose a minimal API
* usa adapter pattern to wrap external packages with specific functionalities (DI container, router, template engine)
* creating also an app-generator## Configuration ##
### Environmental variables ###
* set them into __~/.bash_profile__
* reload with `source ~/.bash_profile`
* variables:
* __PORT__: port for the application to listen to, mandatory
* __SOURCE_FOLDER__: folder for TypeScript source files, optional, defaults to 'src'
* __BUILD_FOLDER__: folder for compiled files, optional, defaults to 'dist'### Cli operations ###