Socket
Socket
Sign inDemoInstall

bees

Package Overview
Dependencies
3
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.5 to 0.0.6

3

package.json
{
"name": "bees",
"version": "0.0.5",
"version": "0.0.6",
"author": "yawnt <yawn.localhost@gmail.com>",

@@ -11,2 +11,3 @@ "description": "Api documentation generator",

},
"dependencies": { "optimist": "*" },
"scripts": {

@@ -13,0 +14,0 @@ "test": "mocha -R spec -r should test/*-test.js"

@@ -15,50 +15,4 @@ bees (in Italian ```API``` means ```bees```)

__app.js__
```javascript
var app = require('express').createServer();
See ```test/file```
/**
* GET /
*
* @return Main page
*/
app.get('/', function(req, res){
res.send('Hello World');
});
/**
* GET /:id
*
* @param id id of the user
* @return user infos
*/
app.get('/:id', function(req, res){
res.send('Hello World');
});
app.listen(3000);
```
```
$ bees app.js
[
{
"method":"GET",
"path":"/",
"return":"Main page"
},
{
"method":"GET",
"path":"/:id",
"params":{
"id":"id of the user"
},
"return":"user infos"
}
]
```
## Plugin:

@@ -65,0 +19,0 @@

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc