Skip to content

Commit 4c3917c

Browse files
committed
procMessenger client integration
Remote access to create AI Dev blog entries from `procMessenger` on my mobile device
1 parent e5ae2b0 commit 4c3917c

4 files changed

Lines changed: 28 additions & 3 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,3 +137,5 @@ dist
137137
.yarn/build-state.yml
138138
.yarn/install-state.gz
139139
.pnp.*
140+
package-lock.json
141+
package-lock.json

docs/pages/aiDev/researchPosts/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import { blogEntryObj as blogEntry_20260313_A } from './2026-03-13_A.js';
2525
/* import { blogEntryObj as blogEntry_20260315_A } from './2026-03-15_A.js'; */
2626
import { blogEntryObj as blogEntry_20260409_A } from './2026-04-09_A.js';
2727
import { blogEntryObj as blogEntry_20260504_A } from './2026-05-04_A.js';
28+
import { blogEntryObj as blogEntry_20260504_B } from './2026-05-04_B.js';
2829

2930

3031

@@ -51,5 +52,7 @@ export const blogEntries = [
5152
blogEntry_20260313_A,
5253
/* blogEntry_20260315_A, */
5354
blogEntry_20260409_A,
54-
blogEntry_20260504_A
55+
blogEntry_20260504_A,
56+
blogEntry_20260504_B
57+
5558
];

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"fbx2glb": "node ./packing/fbx2gltf.js",
1515
"checkglb": "python ./packing/glbAnalyzer.py ",
1616
"renderPages": "node ./packing/renderStaticPages.mjs",
17-
"renderPages:verbose": "node ./packing/renderStaticPages.mjs verbose"
17+
"renderPages:verbose": "node ./packing/renderStaticPages.mjs verbose",
18+
"procClient": "node procMessenger/blog_client.js"
1819
},
1920
"repository": {
2021
"type": "git",
@@ -34,7 +35,9 @@
3435
"dependencies": {
3536
"express": "^4.17.1",
3637
"http": "0.0.1-security",
37-
"path": "^0.12.7"
38+
"path": "^0.12.7",
39+
"uuid": "^14.0.0",
40+
"ws": "^8.20.0"
3841
},
3942
"devDependencies": {
4043
"gh-pages": "^6.2.0",

procMessenger/package.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"type": "commonjs",
3+
"name": "procmessenger",
4+
"version": "1.0.0",
5+
"main": "blog_client.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"keywords": [],
10+
"author": "",
11+
"license": "ISC",
12+
"description": "",
13+
"dependencies": {
14+
"uuid": "^11.1.1",
15+
"ws": "^8.20.0"
16+
}
17+
}

0 commit comments

Comments
 (0)