New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gpxload

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gpxload - npm Package Compare versions

Comparing version 0.5.2 to 0.5.3

2

package.json
{
"name": "gpxload",
"version": "0.5.2",
"version": "0.5.3",
"description": "GPXLoad: GPX file Import / Export and API plugin for SignalK Server.",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -147,3 +147,4 @@ # GPXLoad: signalk-server-plugin

resources.tracks.<uuid>
navigation.course.activeRoute.href```
navigation.course.activeRoute.href
```

@@ -150,0 +151,0 @@ which populate the corresponding HTTP paths:

@@ -27,3 +27,4 @@ /*

description: pkg.description,
version: pkg.version
version: pkg.version,
status: 0
}

@@ -75,15 +76,19 @@ let config= {

}
plugin.status= 1
}
catch (e) {
plugin.started = false
plugin.status= -1
app.error("error: " + e);
console.error(e.stack)
return e
}
}
}
plugin.stop= ()=> { app.debug(`${plugin.name} stopping.......`) }
plugin.stop= ()=> {
app.debug(`${plugin.name} stopping.......`)
plugin.status= 0;
}
plugin.statusMessage= ()=> {
return `${plugin.name} plugin is ${ (plugin.started) ? 'started' : 'stopped' }.`
return `${plugin.name} plugin ${ (plugin.status==1) ? 'is started.' : (plugin.status==-1) ? 'started with errors!' : 'is stopped.' }`
}

@@ -90,0 +95,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc