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

egg-boilerplate-simple

Package Overview
Dependencies
Maintainers
5
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

egg-boilerplate-simple - npm Package Compare versions

Comparing version 2.3.1 to 2.3.2

3

boilerplate/_package.json

@@ -7,4 +7,3 @@ {

"dependencies": {
"egg": "^1.0.0-rc.2",
"uuid": "^3.0.1"
"egg": "^1.0.0-rc.2"
},

@@ -11,0 +10,0 @@ "devDependencies": {

2.3.2 / 2017-03-08
==================
* fix: remove uuid (#25)
2.3.1 / 2017-03-08

@@ -3,0 +8,0 @@ ==================

'use strict';
const uuid = require('uuid/v4');
module.exports = {

@@ -17,4 +15,8 @@ name: {

desc: 'cookie security keys',
default: uuid(),
default: Date.now() + '_' + random(100, 10000),
},
};
function random(start, end) {
return Math.floor(Math.random() * (end - start) + start);
}
{
"name": "egg-boilerplate-simple",
"version": "2.3.1",
"version": "2.3.2",
"description": "boilerplate for egg quickstart",

@@ -5,0 +5,0 @@ "scripts": {

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