Skip to content
This repository was archived by the owner on Jan 24, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ build/Release
# Dependency directories
node_modules
jspm_packages
package-lock.json

# Optional npm cache directory
.npm
Expand Down
9 changes: 8 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,12 @@
"url": "./schema/services.json"
}
],
"vsicons.presets.angular": false
"vsicons.presets.angular": false,
"cSpell.words": [
"Proxable",
"Remoting",
"chevrotain"
],
"typescript.extension.sortImports.quoteStyle": "double",
"typescript.extension.sortImports.maxNamedImportsInSingleLine": 6
}
12 changes: 4 additions & 8 deletions cSpell.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
// cSpell Settings
{
// Version of the setting file. Always 0.1
"version": "0.1",
// language - current active spelling language
"language": "en",
// words - list of words to be always considered correct
"words": [
"kanro"
"chevrotain",
"kanro",
"Proxable",
"Remoting"
],
// flagWords - list of words to be always considered incorrect
// This is useful for offensive words and common spelling errors.
// For example "hte" should be "the"
"flagWords": [
"hte"
]
Expand Down
13 changes: 13 additions & 0 deletions config/banner
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@


8 8888 ,88' .8. b. 8 8 888888888o. ,o888888o.
8 8888 ,88' .888. 888o. 8 8 8888 `88. . 8888 `88.
8 8888 ,88' :88888. Y88888o. 8 8 8888 `88 ,8 8888 `8b
8 8888 ,88' . `88888. .`Y888888o. 8 8 8888 ,88 88 8888 `8b
8 8888 ,88' .8. `88888. 8o. `Y888888o. 8 8 8888. ,88' 88 8888 88
8 8888 88' .8`8. `88888. 8`Y8o. `Y88888o8 8 888888888P' 88 8888 88
8 888888< .8' `8. `88888. 8 `Y8o. `Y8888 8 8888`8b 88 8888 ,8P
8 8888 `Y8. .8' `8. `88888. 8 `Y8o. `Y8 8 8888 `8b. `8 8888 ,8P
8 8888 `Y8. .888888888. `88888. 8 `Y8o.` 8 8888 `8b. ` 8888 ,88'
8 8888 `Y8. .8' `8. `88888. 8 `Yo 8 8888 `88. `8888888P'

34 changes: 33 additions & 1 deletion config/kanro.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"registry": "http://localhost:4873",
"resource": "./resource",
"entryPoint": {
"name": "Router",
"name": "UrlRouter",
"module": {
"name": "kanro",
"version": "*"
Expand Down Expand Up @@ -40,6 +40,38 @@
}
}
},
"/remote": {
"name": "RemoteServiceHolder",
"module": {
"name": "kanro",
"version": "*"
},
"dependencies": {
"target": {
"name": "TestService",
"module": {
"name": "test",
"version": "*"
}
}
}
},
"/test": {
"name": "TestResponder",
"module": {
"name": "test",
"version": "*"
},
"dependencies": {
"target": {
"name": "TestService",
"module": {
"name": "test",
"version": "*"
}
}
}
},
"exceptionHandlers": [
{
"name": "HttpExceptionRenderer",
Expand Down
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,18 @@
"license": "MIT",
"devDependencies": {
"@types/file-type": "^0.0.2",
"@types/node": "^7.0.5",
"@types/node": "^10.5.2",
"@types/npm": "^2.0.28",
"@types/parseurl": "^1.3.0",
"@types/request": "^0.0.45"
"@types/parseurl": "^1.3.0"
},
"dependencies": {
"ajv": "^4.11.4",
"chevrotain": "^3.7.0",
"file-type": "^4.1.0",
"mime-types": "^2.1.15",
"npm": "^4.3.0",
"npm": "^6.1.0",
"parseurl": "^1.3.1",
"read-chunk": "^2.0.0",
"request": "^2.81.0"
"read-chunk": "^2.0.0"
},
"repository": {
"type": "github",
Expand Down
4 changes: 0 additions & 4 deletions src/AppLogger.ts

This file was deleted.

Loading