stonyx 0.2.3-beta.12 → 0.2.3-beta.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stonyx",
3
- "version": "0.2.3-beta.12",
3
+ "version": "0.2.3-beta.13",
4
4
  "description": "Base stonyx framework module",
5
5
  "main": "main.js",
6
6
  "type": "module",
@@ -18,6 +18,11 @@
18
18
  "type": "git",
19
19
  "url": "git+https://github.com/abofs/stonyx.git"
20
20
  },
21
+ "files": [
22
+ "src",
23
+ "config",
24
+ "README.md"
25
+ ],
21
26
  "publishConfig": {
22
27
  "provenance": true
23
28
  },
package/.claude/index.md DELETED
@@ -1,96 +0,0 @@
1
- # Stonyx CLI Guide
2
-
3
- See [docs/index.md](../docs/index.md) for full documentation including conventions, modules, lifecycle, and API reference.
4
-
5
- ## Installation
6
-
7
- Stonyx is the core framework package. The CLI is provided by the `stonyx` binary defined in `package.json`.
8
-
9
- In a project that depends on `stonyx`:
10
-
11
- ```bash
12
- pnpm add -D stonyx
13
- ```
14
-
15
- The CLI is then available as `npx stonyx` or via pnpm scripts.
16
-
17
- ## Commands
18
-
19
- ### `stonyx serve` (alias: `s`)
20
-
21
- Bootstrap Stonyx and run the application.
22
-
23
- ```bash
24
- stonyx serve # loads app.js by default
25
- stonyx serve --entry custom.js # custom entry point
26
- ```
27
-
28
- Behavior:
29
- 1. Loads `.env` file
30
- 2. Imports `config/environment.js`
31
- 3. Initializes Stonyx with all detected `@stonyx/*` modules
32
- 4. Runs startup lifecycle hooks
33
- 5. Imports and instantiates the entry point class
34
- 6. Registers SIGTERM/SIGINT handlers for graceful shutdown
35
-
36
- ### `stonyx test` (alias: `t`)
37
-
38
- Bootstrap Stonyx in test mode and run QUnit tests.
39
-
40
- ```bash
41
- stonyx test # runs test/**/*-test.js
42
- stonyx test test/unit/foo-test.js # specific file
43
- stonyx test "test/integration/**/*-test.js" # glob pattern
44
- ```
45
-
46
- Sets `NODE_ENV=test` and auto-loads test setup which merges `test/config/environment.js` overrides.
47
-
48
- ### `stonyx help` (alias: `h`)
49
-
50
- Show available commands including built-in and module-provided commands.
51
-
52
- ```bash
53
- stonyx help
54
- stonyx --help
55
- stonyx -h
56
- ```
57
-
58
- ### `stonyx new <app-name>`
59
-
60
- Scaffold a new Stonyx project with interactive module selection.
61
-
62
- ```bash
63
- stonyx new my-backend
64
- ```
65
-
66
- Prompts for:
67
- - Package name
68
- - Which `@stonyx/*` modules to include (REST server, WebSockets, ORM, cron, OAuth, events)
69
-
70
- Creates:
71
- - `package.json` with selected dependencies
72
- - `app.js` entry point
73
- - `config/environment.js` and `config/environment.example.js`
74
- - Module-specific directories (`models/`, `requests/`, `crons/`, etc.)
75
- - `test/` structure with `unit/`, `integration/`, `acceptance/`
76
- - `.gitignore` and `.nvmrc`
77
- - Runs `pnpm install`
78
-
79
- ## Module Command System
80
-
81
- Stonyx modules can register CLI commands by exporting a `./commands` entry in their `package.json` exports map. The CLI auto-discovers these from installed `@stonyx/*` packages.
82
-
83
- Module commands appear under "Module commands" in `stonyx help` output. They can optionally request Stonyx bootstrap before running (via `bootstrap: true`).
84
-
85
- ## Creating a Stonyx Project Manually
86
-
87
- If not using `stonyx new`:
88
-
89
- 1. Create project directory
90
- 2. Add `.nvmrc` with current LTS Node version
91
- 3. `pnpm init` and set `"type": "module"`
92
- 4. `pnpm add -D stonyx` plus desired `@stonyx/*` modules
93
- 5. Create `config/environment.js` with module config
94
- 6. Create `app.js` entry point class
95
- 7. Create standard directories per selected modules
96
- 8. Add `@abofs/code-conventions` for linting
@@ -1,16 +0,0 @@
1
- name: CI
2
-
3
- on:
4
- pull_request:
5
- branches: [dev, main]
6
-
7
- concurrency:
8
- group: ci-${{ github.head_ref || github.ref }}
9
- cancel-in-progress: true
10
-
11
- permissions:
12
- contents: read
13
-
14
- jobs:
15
- test:
16
- uses: abofs/stonyx-workflows/.github/workflows/ci.yml@main
@@ -1,51 +0,0 @@
1
- name: Publish to NPM
2
-
3
- on:
4
- repository_dispatch:
5
- types: [cascade-publish]
6
- workflow_dispatch:
7
- inputs:
8
- version-type:
9
- description: 'Version type'
10
- required: true
11
- type: choice
12
- options:
13
- - patch
14
- - minor
15
- - major
16
- custom-version:
17
- description: 'Custom version (optional, overrides version-type)'
18
- required: false
19
- type: string
20
- pull_request:
21
- types: [opened, synchronize, reopened]
22
- branches: [main]
23
- push:
24
- branches: [main]
25
-
26
- concurrency:
27
- group: ${{ github.event_name == 'repository_dispatch' && 'cascade-update' || format('publish-{0}', github.ref) }}
28
- cancel-in-progress: false
29
-
30
- permissions:
31
- contents: write
32
- id-token: write
33
- pull-requests: write
34
-
35
- jobs:
36
- publish:
37
- if: "!contains(github.event.head_commit.message, '[skip ci]')"
38
- uses: abofs/stonyx-workflows/.github/workflows/npm-publish.yml@main
39
- with:
40
- version-type: ${{ github.event.inputs.version-type }}
41
- custom-version: ${{ github.event.inputs.custom-version }}
42
- cascade-source: ${{ github.event.client_payload.source_package || '' }}
43
- secrets: inherit
44
-
45
- cascade:
46
- needs: publish
47
- uses: abofs/stonyx-workflows/.github/workflows/cascade.yml@main
48
- with:
49
- package-name: ${{ needs.publish.outputs.package-name }}
50
- published-version: ${{ needs.publish.outputs.published-version }}
51
- secrets: inherit
package/docs/api.md DELETED
@@ -1,89 +0,0 @@
1
- # API Reference
2
-
3
- Public exports available from the `stonyx` package.
4
-
5
- ## Exports Map
6
-
7
- | Import Path | Export | Description |
8
- |-------------|--------|-------------|
9
- | `stonyx` | `default` (Stonyx class) | Main framework class (singleton) |
10
- | `stonyx` | `waitForModule(name)` | Wait for an async module to be ready |
11
- | `stonyx/config` | `default` (config object) | Live reference to Stonyx configuration |
12
- | `stonyx/log` | `default` (Chronicle instance) | Live reference to Chronicle logger |
13
- | `stonyx/lifecycle` | `runStartupHooks(modules)` | Run startup hooks on a module array |
14
- | `stonyx/lifecycle` | `runShutdownHooks(modules)` | Run shutdown hooks in reverse order |
15
- | `stonyx/test-helpers` | `setupIntegrationTests(hooks)` | QUnit hook for integration test setup |
16
-
17
- ## Stonyx Class
18
-
19
- ```js
20
- import Stonyx from 'stonyx';
21
- ```
22
-
23
- ### Constructor
24
-
25
- ```js
26
- new Stonyx(config, rootPath)
27
- ```
28
-
29
- - **config** — Full environment configuration object
30
- - **rootPath** — Absolute path to the project root
31
-
32
- Returns the existing instance if one already exists (singleton pattern).
33
-
34
- ### Static Properties
35
-
36
- | Property | Type | Description |
37
- |----------|------|-------------|
38
- | `Stonyx.instance` | `Stonyx` | The singleton instance |
39
- | `Stonyx.ready` | `Promise` | Resolves when all modules are initialized |
40
- | `Stonyx.initialized` | `boolean` | Whether Stonyx has started initialization |
41
-
42
- ### Static Getters
43
-
44
- | Getter | Returns | Throws |
45
- |--------|---------|--------|
46
- | `Stonyx.config` | Config object | If not initialized |
47
- | `Stonyx.log` | Chronicle instance | If not initialized |
48
-
49
- ### Instance Properties
50
-
51
- | Property | Type | Description |
52
- |----------|------|-------------|
53
- | `instance.config` | `object` | Merged environment configuration |
54
- | `instance.chronicle` | `Chronicle` | Logger instance |
55
- | `instance.modules` | `Array` | Loaded module instances |
56
-
57
- ## waitForModule
58
-
59
- ```js
60
- import { waitForModule } from 'stonyx';
61
-
62
- await waitForModule('rest-server');
63
- ```
64
-
65
- Waits for a specific `@stonyx/*` module to complete initialization. Pass the module name **without** the `@stonyx/` prefix.
66
-
67
- Throws if the module is not registered in project dependencies.
68
-
69
- ## Lifecycle Functions
70
-
71
- ```js
72
- import { runStartupHooks, runShutdownHooks } from 'stonyx/lifecycle';
73
- ```
74
-
75
- ### runStartupHooks(modules)
76
-
77
- Calls `startup()` on each module in array order. Skips modules without a `startup` method.
78
-
79
- ### runShutdownHooks(modules)
80
-
81
- Calls `shutdown()` on each module in **reverse** array order. Errors are caught and logged — one failing hook does not prevent others from running.
82
-
83
- ## setupIntegrationTests
84
-
85
- ```js
86
- import { setupIntegrationTests } from 'stonyx/test-helpers';
87
- ```
88
-
89
- Registers a QUnit `before` hook that waits for `Stonyx.ready`. Use within a `module()` block to ensure Stonyx is fully initialized before tests run.
package/docs/cli.md DELETED
@@ -1,88 +0,0 @@
1
- # CLI
2
-
3
- Stonyx includes a CLI that handles bootstrapping, module initialization, and application execution.
4
-
5
- ## Usage
6
-
7
- ```bash
8
- stonyx <command> [...args]
9
- ```
10
-
11
- ## Built-in Commands
12
-
13
- | Command | Alias | Description |
14
- |---------|-------|-------------|
15
- | `new` | `n` | Scaffold a new Stonyx project |
16
- | `serve` | `s` | Bootstrap Stonyx and run the app |
17
- | `test` | `t` | Bootstrap Stonyx in test mode and run tests |
18
- | `help` | `h` | Show available commands |
19
-
20
- ### new
21
-
22
- Scaffolds a new Stonyx project in the current directory. Prompts for a project name and which modules to include, then generates the project structure and runs `pnpm install`.
23
-
24
- ```bash
25
- stonyx new # Prompts for project name
26
- stonyx new my-app # Creates my-app/ in the current directory
27
- ```
28
-
29
- ### serve
30
-
31
- Bootstraps Stonyx (loads config, initializes modules, runs lifecycle hooks), then imports your application entry point.
32
-
33
- ```bash
34
- stonyx serve # Runs app.js by default
35
- stonyx serve --entry custom.js # Runs a custom entry file
36
- ```
37
-
38
- The serve command also registers `SIGTERM` and `SIGINT` handlers that run [shutdown hooks](lifecycle.md) before exiting.
39
-
40
- ### test
41
-
42
- Runs your test suite using [QUnit](https://qunitjs.com/) with automatic Stonyx bootstrapping. Sets `NODE_ENV=test` and applies any [test config overrides](configuration.md#test-environment-overrides).
43
-
44
- ```bash
45
- stonyx test # Runs test/**/*-test.js by default
46
- stonyx test "test/unit/**/*.js" # Custom test glob
47
- ```
48
-
49
- ### help
50
-
51
- Displays all available commands, including any [module commands](#module-commands).
52
-
53
- ```bash
54
- stonyx help
55
- ```
56
-
57
- ## Module Commands
58
-
59
- Stonyx modules can register custom CLI commands by exporting a `./commands` entry in their `package.json`. These are automatically discovered and available through the CLI.
60
-
61
- ```json
62
- {
63
- "exports": {
64
- "./commands": "./src/commands.js"
65
- }
66
- }
67
- ```
68
-
69
- The commands file should export an object mapping command names to definitions:
70
-
71
- ```js
72
- export default {
73
- 'db:migrate': {
74
- description: 'Run database migrations',
75
- bootstrap: true,
76
- run: async ({ args, cwd }) => { /* ... */ }
77
- }
78
- };
79
- ```
80
-
81
- - **`bootstrap: true`** — Stonyx will be fully initialized before the command runs
82
- - **`bootstrap: false`** — The command runs without Stonyx initialization
83
-
84
- Module commands appear under "Module commands" in `stonyx help` output. If two modules register the same command name, the first one loaded wins and a warning is printed.
85
-
86
- ## Environment Variables
87
-
88
- The CLI automatically loads `.env` files via `process.loadEnvFile()` before executing any command.
@@ -1,72 +0,0 @@
1
- # Configuration
2
-
3
- Stonyx uses a centralized configuration file that all modules read from at startup.
4
-
5
- ## Environment Config
6
-
7
- Your project's configuration lives at `config/environment.js`:
8
-
9
- ```js
10
- const { DEBUG, NODE_ENV } = process.env;
11
-
12
- const environment = NODE_ENV ?? 'development';
13
-
14
- export default {
15
- environment,
16
- debug: DEBUG ?? environment === 'development',
17
-
18
- // Module-specific configuration
19
- restServer: { logColor: 'yellow', port: 3000 },
20
- cron: { log: true },
21
- };
22
- ```
23
-
24
- This file is auto-generated on `npm install` via the postinstall script if it doesn't already exist.
25
-
26
- > **Note:** `config/environment.js` is gitignored by default so each environment can have its own settings.
27
-
28
- ## Module Configuration
29
-
30
- Each Stonyx module reads its configuration from a top-level key matching its camelCase name. For example, `@stonyx/rest-server` reads from `config.restServer`.
31
-
32
- Async modules ship with their own default config at `config/environment.js` inside the module package. Your project config is merged on top of these defaults — you only need to specify overrides.
33
-
34
- ## Logging Configuration
35
-
36
- Any config key with a `logColor` property automatically creates a [Chronicle](logging.md) log type:
37
-
38
- ```js
39
- export default {
40
- myService: {
41
- logColor: 'purple', // Required — enables log creation
42
- logMethod: 'highlight', // Optional — custom method name (defaults to key name)
43
- logTimestamp: true, // Optional — include timestamps
44
- },
45
- };
46
- ```
47
-
48
- This works for both module configs and custom service configs. See [Logging](logging.md) for details.
49
-
50
- ## Test Environment Overrides
51
-
52
- When `NODE_ENV=test`, Stonyx automatically looks for `test/config/environment.js` in your project root:
53
-
54
- ```js
55
- // test/config/environment.js
56
- export default {
57
- debug: false,
58
- restServer: { port: 0 },
59
- };
60
- ```
61
-
62
- These overrides are deep-merged into the main config using in-place mutation, so any existing references (like `stonyx/config` exports) stay valid.
63
-
64
- ## Accessing Config at Runtime
65
-
66
- ```js
67
- import config from 'stonyx/config';
68
-
69
- console.log(config.environment); // 'development', 'test', etc.
70
- ```
71
-
72
- The `stonyx/config` export is a live reference to the Stonyx instance config. It will throw if accessed before Stonyx is initialized.