signalk-ssl 0.0.1

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.
Files changed (4) hide show
  1. package/LICENSE +15 -0
  2. package/README.md +23 -0
  3. package/index.js +19 -0
  4. package/package.json +28 -0
package/LICENSE ADDED
@@ -0,0 +1,15 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # signalk-ssl
2
+
3
+ SSL/TLS certificate management plugin for [SignalK Node Server](https://signalk.org/).
4
+
5
+ **Status:** skeleton — name reserved on npm, implementation pending.
6
+
7
+ ## Planned scope
8
+
9
+ Manage SSL/TLS certificates for the SignalK server from inside the server:
10
+
11
+ - Generate and install self-signed certificates
12
+ - Let's Encrypt / ACME certificate provisioning and renewal
13
+ - Bring-your-own-cert (BYOC) install and rotation
14
+ - Expiry monitoring and pre-expiry alerts
15
+ - Trust chain / CA bundle management
16
+
17
+ ## Install
18
+
19
+ Not ready for use. Once published with real functionality, install via the SignalK Appstore as `signalk-ssl`.
20
+
21
+ ## License
22
+
23
+ Apache-2.0
package/index.js ADDED
@@ -0,0 +1,19 @@
1
+ module.exports = function (app) {
2
+ const plugin = {
3
+ id: 'signalk-ssl',
4
+ name: 'SignalK SSL',
5
+ description: 'SSL/TLS certificate management plugin for SignalK (skeleton).',
6
+ schema: {
7
+ type: 'object',
8
+ properties: {}
9
+ },
10
+ start: function (_options) {
11
+ app.debug('signalk-ssl start (skeleton — no SSL logic implemented)');
12
+ },
13
+ stop: function () {
14
+ app.debug('signalk-ssl stop');
15
+ }
16
+ };
17
+
18
+ return plugin;
19
+ };
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "signalk-ssl",
3
+ "version": "0.0.1",
4
+ "description": "SSL/TLS certificate management plugin for SignalK Node Server (skeleton — implementation pending)",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"no tests yet\" && exit 0"
8
+ },
9
+ "keywords": [
10
+ "signalk-node-server-plugin",
11
+ "signalk-category-utility"
12
+ ],
13
+ "author": "Dirk",
14
+ "license": "Apache-2.0",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/dirkwa/signalk-ssl.git"
18
+ },
19
+ "bugs": {
20
+ "url": "https://github.com/dirkwa/signalk-ssl/issues"
21
+ },
22
+ "homepage": "https://github.com/dirkwa/signalk-ssl#readme",
23
+ "files": [
24
+ "index.js",
25
+ "README.md",
26
+ "LICENSE"
27
+ ]
28
+ }