https://github.com/studiowebux/webuxjs
Webux Lab NodeJS Framework
https://github.com/studiowebux/webuxjs
framework nodejs toolkit
Last synced: 5 months ago
JSON representation
Webux Lab NodeJS Framework
- Host: GitHub
- URL: https://github.com/studiowebux/webuxjs
- Owner: studiowebux
- License: mit
- Created: 2021-04-01T16:40:53.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-06-20T00:11:45.000Z (almost 2 years ago)
- Last Synced: 2024-11-11T16:52:24.986Z (over 1 year ago)
- Topics: framework, nodejs, toolkit
- Language: JavaScript
- Homepage:
- Size: 7.3 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Webux Lab - WebuxJS Framework
## Packages
| Packages | Status |
| ---------------- | ---------- |
| webux-app | Stable |
| webux-fileupload | Stable |
| webux-generator | WIP |
| webux-logger | Stable |
| webux-mailer | Stable |
| webux-route | Stable |
| webux-security | Stable |
| webux-server | Stable |
| webux-socket | Stable |
| webux-sql | Stable |
| webux-telemetry | Alpha |
| webux-queue | Alpha |
| webux-pubsub | Alpha |
| webux-sitemap | Beta |
| webux-search | Beta |
| webux-crawler | Alpha |
| webux-view | Alpha |
| webux-scylla | Not Tested |
| webux-mongo | Not Tested |
| webux-janusgraph | Not Tested |
## Setup
```bash
nvm install 20
nvm use 20
Now using node v20.12.2 (npm v10.5.0)
```
## Getting Started
See the generator.
```bash
npm i -g husky lerna
```
## Releases
```bash
npx lerna publish
```
## Cleanup
```bash
for f in *; do echo $f; pushd $f; rm package-lock.json; rm -fr node_modules/; popd; done
for f in *; do echo $f; pushd $f; npm i; popd; done
```