Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

peep

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

peep - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

7

index.js

@@ -101,3 +101,8 @@ 'use strict';

var dirname = node_path.dirname(path);
var dirname;
if (node_fs.lstatSync(path).isDirectory()) {
dirname = path;
} else {
dirname = node_path.dirname(path);
}

@@ -104,0 +109,0 @@ // Or add a new container

25

package.json
{
"name": "peep",
"version": "0.1.0",
"version": "0.1.1",
"description": "Peep is a smart fs.watch wrapper which is lighter and faster, uses as less fs.FSWatchers as possible, and could prevent duplicate watching.",

@@ -11,3 +11,3 @@ "main": "index.js",

"type": "git",
"url": "git://github.com/kaelzhang/peep.git"
"url": "git://github.com/deiga/peep.git"
},

@@ -23,13 +23,20 @@ "keywords": [

],
"author": "kael",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaelzhang/peep/issues"
"url": "https://github.com/deiga/peep/issues"
},
"dependencies": {
"dependencies": {},
"devDependencies": {
"mocha": "*",
"chai": "*"
},
"devDependencies": {
"mocha": "~1.12.0",
"chai": "~1.7.2"
}
"maintainers": [
"kael <i@kael.me>",
"deiga <timo.j.sand@gmail.com>"
],
"homepage": "https://github.com/deiga/peep",
"directories": {
"test": "test"
},
"author": "kael"
}
# Peep
Peep is a smart `fs.watch` wrapper which is lighter and faster. It uses as less `fs.FSWatcher`s as possible, and could prevent duplicate watching.
Peep is a smart `fs.watch` wrapper which is lighter and faster. It uses as little `fs.FSWatcher`s as possible, and can prevent duplicate watching.
Peep has a better `.add()` method which could automatically detect nested structures between the current watched files and directories, and choose the best strategy to make it fast and of less resources usage.
Peep has a better `.add()` method which can automatically detect nested structures between the current watched files and directories, and choose the best strategy to make it fast and use less resources.

@@ -62,2 +62,2 @@ ## Installation

What's comming...
What's coming...

Sorry, the diff of this file is not supported yet

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