Nodemon: Error with Node v6.0.0?

Created on 27 Apr 2016  Β·  18Comments  Β·  Source: remy/nodemon

I just installed Node v6.0.0 and getting a weird error when using nodemon.

> nodemon --exec babel-node ./src/server

(node) v8::ObjectTemplate::Set() with non-primitive values is deprecated
(node) and will stop working in the next major release.

==== JS stack trace =========================================

Security context: 0xddbd16c9fa9 <JS Object>#0#
    1: .node [module.js:568] [pc=0x1ba34b0d4324] (this=0x39c35f3d7b61 <an Object with map 0x3e76c8617be1>#1#,module=0x280a5b1bb8d1 <a Module with map 0x3e76c86181b9>#2#,filename=0x280a5b1bb8a9 <String[111]: /Users/olalonde/code//node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    2: load [module.js:456] [pc=0x1ba34b038e72] (this=0x280a5b1bb8d1 <a Module with map 0x3e76c86181b9>#2#,filename=0x280a5b1bb8a9 <String[111]: /Users/olalonde/code//node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    3: tryModuleLoad(aka tryModuleLoad) [module.js:415] [pc=0x1ba34b03899d] (this=0xddbd1604189 <undefined>,module=0x280a5b1bb8d1 <a Module with map 0x3e76c86181b9>#2#,filename=0x280a5b1bb8a9 <String[111]: /Users/olalonde/code//node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    4: 1: v8::Template::Set(v8::Local<v8::Name>, v8::Local<v8::Data>, v8::PropertyAttribute)
 2: fse::FSEvents::Initialize(v8::Local<v8::Object>)
 3: node::DLOpen(v8::FunctionCallbackInfo<v8::Value> const&)
 4: v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
 5: v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::(anonymous namespace)::BuiltinArguments<(v8::internal::BuiltinExtraArguments)1>)
 6: v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
 7: 0x1ba34af0961b
 8: 0x1ba34b0d4324
(node) v8::ObjectTemplate::Set() with non-primitive values is deprecated
(node) and will stop working in the next major release.

==== JS stack trace =========================================

Security context: 0xddbd16c9fa9 <JS Object>#0#
    1: .node [module.js:568] [pc=0x1ba34b0d4324] (this=0x39c35f3d7b61 <an Object with map 0x3e76c8617be1>#1#,module=0x280a5b1bb8d1 <a Module with map 0x3e76c86181b9>#2#,filename=0x280a5b1bb8a9 <String[111]: /Users/olalonde/code//node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    2: load [module.js:456] [pc=0x1ba34b038e72] (this=0x280a5b1bb8d1 <a Module with map 0x3e76c86181b9>#2#,filename=0x280a5b1bb8a9 <String[111]: /Users/olalonde/code//node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    3: tryModuleLoad(aka tryModuleLoad) [module.js:415] [pc=0x1ba34b03899d] (this=0xddbd1604189 <undefined>,module=0x280a5b1bb8d1 <a Module with map 0x3e76c86181b9>#2#,filename=0x280a5b1bb8a9 <String[111]: /Users/olalonde/code//node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    4: 1: v8::Template::Set(v8::Local<v8::Name>, v8::Local<v8::Data>, v8::PropertyAttribute)
 2: fse::FSEvents::Initialize(v8::Local<v8::Object>)
 3: node::DLOpen(v8::FunctionCallbackInfo<v8::Value> const&)
 4: v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
 5: v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::(anonymous namespace)::BuiltinArguments<(v8::internal::BuiltinExtraArguments)1>)
 6: v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
 7: 0x1ba34af0961b
 8: 0x1ba34b0d4324
[nodemon] 1.9.1
[nodemon] to restart at any time, enter `rs`
[nodemon] watching: *.*

Most helpful comment

As a developer, every "+1" hit and leave, discourages me from actually wanting to do anything. It's the equivalent of saying "yeah! Just fix it!!!" whilst you make no contribution at all.

At least olalonde identified that it's a problem with Chokidar. My guess? Bump the version dep. Send me a PR with a change to the .travis.yml that includes node 6 and I'll take a look.

All 18 comments

Problem seems to be in fsevents library (https://github.com/strongloop/fsevents/issues/127) which is used by chokidar.

+1

+1

As a developer, every "+1" hit and leave, discourages me from actually wanting to do anything. It's the equivalent of saying "yeah! Just fix it!!!" whilst you make no contribution at all.

At least olalonde identified that it's a problem with Chokidar. My guess? Bump the version dep. Send me a PR with a change to the .travis.yml that includes node 6 and I'll take a look.

@remy oh man, I feel for you. Sometimes, open source users can feel pretty entitled and forget that you don't owe them anything. Node v6 was just released and a lot of native modules are breaking due to a backwards incompatible change in the native API (https://github.com/nodejs/node/pull/6277).

I just reported this here as a heads up, best we can do right now is to wait for the upstream modules to get this fixed.

PS: thanks for nodemon!

Looks like the root cause is being tackled by this PR in fsevents. We just have to wait for both fsevents and chokidar releases.

+1

Damn son, some people are funny.

Yay, guess we can close this now. Just installed nodemon again and error is gone. Added node v6 to travis.yml https://github.com/remy/nodemon/pull/826 if it helps

All appropriate deps bumped thanks to an external PR and live in 1.9.2. πŸ’ŸπŸ’ͺ

As a developer, every "+1" hit and leave, discourages me from actually wanting to do anything. It's the equivalent of saying "yeah! Just fix it!!!" whilst you make no contribution at all.

@remy
If no one is in charge of this project then give everyone rights to publish it.
https://www.npmjs.com/package/nodemon/access
(not me, I'm not interested)
Otherwise, if you're man enough to claim sole ownership of nodemon project then stop crying like a beatch and get things done.

@halt-hammerzeit beatch?

@maban Yeah, it's like when sand gets in your eyes β€” it really makes you cry a lot.

nodemon seems not works with node v6.

I'm still seeing these errors on the latest version:

$ npm ls nodemon
[email protected] /Users/OliverJAsh/Development/cubik-app
└── [email protected]

$ npm ls fsevents
[email protected] /Users/OliverJAsh/Development/cubik-app
└─┬ [email protected]
  └─┬ [email protected]
    └── [email protected]

$ nodemon server
[nodemon] 1.9.2
[nodemon] to restart at any time, enter `rs`
[nodemon] watching: *.*
[nodemon] starting `node server`
started
(node) v8::FunctionTemplate::Set() with non-primitive values is deprecated
(node) and will stop working in the next major release.

==== JS stack trace =========================================

Security context: 0x3b3eecec9e59 <JS Object>#0#
…

Update: this was another module in my Node app (xxhash)

@vimniky this issue is closed now, can you open a new issue with specific details. My latest test with node@6 shows nodemon working, but I don't know the details of your particular problem. Same with @OliverJAsh - though this seems more like a specific thing with your project. Can you par it down to a single script to replicate the error (and raise separately).

Reproduces in [email protected], [email protected]:

$ node --version
v6.9.4
$ npm ls | grep nodemon
β”œβ”€β”¬ [email protected]
$ npm ls | grep -A40 nodemon
β”œβ”€β”¬ [email protected]
β”‚ β”œβ”€β”¬ [email protected]
β”‚ β”‚ β”œβ”€β”¬ [email protected]
β”‚ β”‚ β”‚ β”œβ”€β”€ [email protected]
β”‚ β”‚ β”‚ └─┬ [email protected]
β”‚ β”‚ β”‚   β”œβ”€β”¬ [email protected]
β”‚ β”‚ β”‚   β”‚ └── [email protected]
β”‚ β”‚ β”‚   β”œβ”€β”€ [email protected]
β”‚ β”‚ β”‚   β”œβ”€β”¬ [email protected]
β”‚ β”‚ β”‚   β”‚ β”œβ”€β”¬ [email protected]
β”‚ β”‚ β”‚   β”‚ β”‚ └─┬ [email protected]
β”‚ β”‚ β”‚   β”‚ β”‚   β”œβ”€β”€ [email protected]
β”‚ β”‚ β”‚   β”‚ β”‚   β”œβ”€β”¬ [email protected]
β”‚ β”‚ β”‚   β”‚ β”‚   β”‚ └── [email protected]
β”‚ β”‚ β”‚   β”‚ β”‚   └── [email protected]
β”‚ β”‚ β”‚   β”‚ β”œβ”€β”€ [email protected]
β”‚ β”‚ β”‚   β”‚ └── [email protected]
β”‚ β”‚ β”‚   β”œβ”€β”¬ [email protected]
β”‚ β”‚ β”‚   β”‚ └── [email protected]
β”‚ β”‚ β”‚   β”œβ”€β”€ [email protected]
β”‚ β”‚ β”‚   β”œβ”€β”€ [email protected]
β”‚ β”‚ β”‚   β”œβ”€β”¬ [email protected]
β”‚ β”‚ β”‚   β”‚ └── [email protected]
β”‚ β”‚ β”‚   β”œβ”€β”€ [email protected]
β”‚ β”‚ β”‚   β”œβ”€β”¬ [email protected]
β”‚ β”‚ β”‚   β”‚ β”œβ”€β”¬ [email protected]
β”‚ β”‚ β”‚   β”‚ β”‚ └── [email protected]
β”‚ β”‚ β”‚   β”‚ └── [email protected]
β”‚ β”‚ β”‚   β”œβ”€β”¬ [email protected]
β”‚ β”‚ β”‚   β”‚ β”œβ”€β”€ [email protected]
β”‚ β”‚ β”‚   β”‚ └── [email protected]
β”‚ β”‚ β”‚   └─┬ [email protected]
β”‚ β”‚ β”‚     β”œβ”€β”€ [email protected]
β”‚ β”‚ β”‚     └── [email protected]
β”‚ β”‚ β”œβ”€β”€ [email protected]
β”‚ β”‚ β”œβ”€β”¬ [email protected]
β”‚ β”‚ β”‚ β”œβ”€β”€ [email protected]
β”‚ β”‚ β”‚ └─┬ [email protected]
β”‚ β”‚ β”‚   β”œβ”€β”¬ [email protected]
β”‚ β”‚ β”‚   β”‚ └── [email protected]
β”‚ β”‚ β”‚   β”œβ”€β”¬ [email protected]
$ npm run dev

> [email protected] dev /Users/__CENSORED__
> cross-env DEBUG=xxx* npm-run-all --parallel watch-dev-client start-dev start-dev-api


> [email protected] watch-dev-client /Users/__CENSORED__
> cross-env NODE_ENV=development BABEL_CACHE_PATH=./.babel PORT=3000 UV_THREADPOOL_SIZE=100 node ./webpack/runServeDevClient.js


> [email protected] start-dev-api /Users/__CENSORED__
> cross-env NODE_ENV=development BABEL_CACHE_PATH=./.babel APIPORT=3030 nodemon -w ./src/api -w ./src/common -i test-node/ -e js,json -x node ./bin/api.js


> [email protected] start-dev /Users/__CENSORED__
> cross-env NODE_ENV=development BABEL_CACHE_PATH=./.babel PORT=3000 APIPORT=3030 nodemon -w ./src/webapp -w ./src/server -w ./src/common -i test-node/* -e js,jsx -x node ./bin/server.js

(node) v8::ObjectTemplate::Set() with non-primitive values is deprecated
(node) and will stop working in the next major release.
(node) v8::ObjectTemplate::Set() with non-primitive values is deprecated
(node) and will stop working in the next major release.

==== JS stack trace =========================================

Security context: 0x163dbb2cfb51 <JS Object>#0#
    1: .node [module.js:597] [pc=0x3075ae6d9044] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x24df3992efb9 <a Module with map 0x39e74fa1c1f9>#2#,filename=0x24df3992bbb9 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    2: load [module.js:487] [pc=0x3075ae63fd92] (this=0x24df3992efb9 <a Module with map 0x39e74fa1c1f9>#2#,filename=0x24df3992bbb9 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    3: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0x24df3992efb9 <a Module with map 0x39e74fa1c1f9>#2#,filename=0x24df3992bbb9 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    4: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x24df39925369 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>,parent=0xa0900dbe1 <a Module with map 0x39e74fa1c1f9>#4#,isMain=0x163dbb204271 <false>)
    5: require [module.js:~494] [pc=0x3075ae69c22c] (this=0xa0900dbe1 <a Module with map 0x39e74fa1c1f9>#4#,path=0x24df39925369 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    6: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x24df39925369 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    7: /* anonymous */ [/Users/__CENSORED__/node_modules/fsevents/fsevents.js:11] [pc=0x3075ae695712] (this=0xa0900de99 <an Object with map 0x4b9e09075e9>#5#,exports=0xa0900de99 <an Object with map 0x4b9e09075e9>#5#,require=0xa0900dc71 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#6#,module=0xa0900dbe1 <a Module with map 0x39e74fa1c1f9>#4#,__filename=0xa0900de31 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>,__dirname=0xa0900de09 <String[64]: /Users/__CENSORED__/node_modules/fsevents>)
    8: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0xa0900dbe1 <a Module with map 0x39e74fa1c1f9>#4#,content=0xa0900f831 <Very long string[3154]>#7#,filename=0xa0900de31 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)
    9: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0xa0900dbe1 <a Module with map 0x39e74fa1c1f9>#4#,filename=0xa0900de31 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)
   10: load [module.js:487] [pc=0x3075ae63fd92] (this=0xa0900dbe1 <a Module with map 0x39e74fa1c1f9>#4#,filename=0xa0900de31 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)
   11: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0xa0900dbe1 <a Module with map 0x39e74fa1c1f9>#4#,filename=0xa0900de31 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)
   12: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f47c1961 <String[8]: fsevents>,parent=0xa09011111 <a Module with map 0x39e74fa1c1f9>#8#,isMain=0x163dbb204271 <false>)
   13: require [module.js:~494] [pc=0x3075ae649433] (this=0xa09011111 <a Module with map 0x39e74fa1c1f9>#8#,path=0x2c29f47c1961 <String[8]: fsevents>)
   14: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f47c1961 <String[8]: fsevents>)
   15: /* anonymous */ [/Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js:7] [pc=0x3075ae69504a] (this=0xa090113c9 <an Object with map 0x4b9e09075e9>#9#,exports=0xa090113c9 <an Object with map 0x4b9e09075e9>#9#,require=0xa090111a1 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#10#,module=0xa09011111 <a Module with map 0x39e74fa1c1f9>#8#,__filename=0xa09011359 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>,__dirname=0xa09011331 <String[68]: /Users/__CENSORED__/node_modules/chokidar/lib>)
   16: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0xa09011111 <a Module with map 0x39e74fa1c1f9>#8#,content=0xa090143a1 <Very long string[12063]>#11#,filename=0xa09011359 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   17: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0xa09011111 <a Module with map 0x39e74fa1c1f9>#8#,filename=0xa09011359 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   18: load [module.js:487] [pc=0x3075ae63fd92] (this=0xa09011111 <a Module with map 0x39e74fa1c1f9>#8#,filename=0xa09011359 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   19: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0xa09011111 <a Module with map 0x39e74fa1c1f9>#8#,filename=0xa09011359 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   20: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f47c2039 <String[22]: ./lib/fsevents-handler>,parent=0x30113a88e869 <a Module with map 0x39e74fa1c1f9>#12#,isMain=0x163dbb204271 <false>)
   21: require [module.js:~494] [pc=0x3075ae649433] (this=0x30113a88e869 <a Module with map 0x39e74fa1c1f9>#12#,path=0x2c29f47c2039 <String[22]: ./lib/fsevents-handler>)
   22: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f47c2039 <String[22]: ./lib/fsevents-handler>)
   23: /* anonymous */ [/Users/__CENSORED__/node_modules/chokidar/index.js:13] [pc=0x3075ae6777b2] (this=0x30113a88eb09 <an Object with map 0x4b9e09075e9>#13#,exports=0x30113a88eb09 <an Object with map 0x4b9e09075e9>#13#,require=0x30113a88e8f9 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#14#,module=0x30113a88e869 <a Module with map 0x39e74fa1c1f9>#12#,__filename=0x30113a88eaa1 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>,__dirname=0x30113a88ea79 <String[64]: /Users/__CENSORED__/node_modules/chokidar>)
   24: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0x30113a88e869 <a Module with map 0x39e74fa1c1f9>#12#,content=0x30113a899691 <Very long string[21834]>#15#,filename=0x30113a88eaa1 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>)
   25: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x30113a88e869 <a Module with map 0x39e74fa1c1f9>#12#,filename=0x30113a88eaa1 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>)
   26: load [module.js:487] [pc=0x3075ae63fd92] (this=0x30113a88e869 <a Module with map 0x39e74fa1c1f9>#12#,filename=0x30113a88eaa1 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>)
   27: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0x30113a88e869 <a Module with map 0x39e74fa1c1f9>#12#,filename=0x30113a88eaa1 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>)
   28: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f47b7e59 <String[8]: chokidar>,parent=0x30113a8a4161 <a Module with map 0x39e74fa1c1f9>#16#,isMain=0x163dbb204271 <false>)
   29: require [module.js:~494] [pc=0x3075ae649433] (this=0x30113a8a4161 <a Module with map 0x39e74fa1c1f9>#16#,path=0x2c29f47b7e59 <String[8]: chokidar>)
   30: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f47b7e59 <String[8]: chokidar>)
   31: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js:7] [pc=0x3075ae671bea] (this=0x30113a8a4451 <an Object with map 0x39e74fa2e5d1>#17#,exports=0x30113a8a4451 <an Object with map 0x39e74fa2e5d1>#17#,require=0x30113a8a41f1 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#18#,module=0x30113a8a4161 <a Module with map 0x39e74fa1c1f9>#16#,__filename=0x30113a8a43e1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>,__dirname=0x30113a8a43b9 <String[75]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor>)
   32: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0x30113a8a4161 <a Module with map 0x39e74fa1c1f9>#16#,content=0x30113a8a5709 <Very long string[4612]>#19#,filename=0x30113a8a43e1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   33: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x30113a8a4161 <a Module with map 0x39e74fa1c1f9>#16#,filename=0x30113a8a43e1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   34: load [module.js:487] [pc=0x3075ae63fd92] (this=0x30113a8a4161 <a Module with map 0x39e74fa1c1f9>#16#,filename=0x30113a8a43e1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   35: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0x30113a8a4161 <a Module with map 0x39e74fa1c1f9>#16#,filename=0x30113a8a43e1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   36: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f4798089 <String[7]: ./watch>,parent=0x30113a8a6949 <a Module with map 0x39e74fa1c1f9>#20#,isMain=0x163dbb204271 <false>)
   37: require [module.js:~494] [pc=0x3075ae649433] (this=0x30113a8a6949 <a Module with map 0x39e74fa1c1f9>#20#,path=0x2c29f4798089 <String[7]: ./watch>)
   38: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f4798089 <String[7]: ./watch>)
   39: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js:7] [pc=0x3075ae662fb5] (this=0x30113a8a6be1 <an Object with map 0x4b9e09075e9>#21#,exports=0x30113a8a6be1 <an Object with map 0x4b9e09075e9>#21#,require=0x30113a8a69d9 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#22#,module=0x30113a8a6949 <a Module with map 0x39e74fa1c1f9>#20#,__filename=0x30113a8a6b71 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>,__dirname=0x30113a8a6b49 <String[75]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor>)
   40: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0x30113a8a6949 <a Module with map 0x39e74fa1c1f9>#20#,content=0x30113a8a9449 <Very long string[10161]>#23#,filename=0x30113a8a6b71 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   41: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x30113a8a6949 <a Module with map 0x39e74fa1c1f9>#20#,filename=0x30113a8a6b71 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   42: load [module.js:487] [pc=0x3075ae63fd92] (this=0x30113a8a6949 <a Module with map 0x39e74fa1c1f9>#20#,filename=0x30113a8a6b71 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   43: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0x30113a8a6949 <a Module with map 0x39e74fa1c1f9>#20#,filename=0x30113a8a6b71 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   44: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f4798069 <String[5]: ./run>,parent=0x30113a8abc39 <a Module with map 0x39e74fa1c1f9>#24#,isMain=0x163dbb204271 <false>)
   45: require [module.js:~494] [pc=0x3075ae649433] (this=0x30113a8abc39 <a Module with map 0x39e74fa1c1f9>#24#,path=0x2c29f4798069 <String[5]: ./run>)
   46: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f4798069 <String[5]: ./run>)
   47: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js:2] [pc=0x3075ae662770] (this=0x30113a8abe19 <an Object with map 0x4b9e09075e9>#25#,exports=0x30113a8abe19 <an Object with map 0x4b9e09075e9>#25#,require=0x30113a8abcc9 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#26#,module=0x30113a8abc39 <a Module with map 0x39e74fa1c1f9>#24#,__filename=0x30113a8abda9 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>,__dirname=0x30113a8abd81 <String[75]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor>)
   48: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0x30113a8abc39 <a Module with map 0x39e74fa1c1f9>#24#,content=0x30113a8abf21 <String[82]\: module.exports = {\n  run: require('./run'),\n  watch: require('./watch').watch,\n};\n>,filename=0x30113a8abda9 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   49: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x30113a8abc39 <a Module with map 0x39e74fa1c1f9>#24#,filename=0x30113a8abda9 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   50: load [module.js:487] [pc=0x3075ae63fd92] (this=0x30113a8abc39 <a Module with map 0x39e74fa1c1f9>#24#,filename=0x30113a8abda9 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   51: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0x30113a8abc39 <a Module with map 0x39e74fa1c1f9>#24#,filename=0x30113a8abda9 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   52: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f4771159 <String[9]: ./monitor>,parent=0x30113a8abfb1 <a Module with map 0x39e74fa1c1f9>#27#,isMain=0x163dbb204271
==== JS stack trace =========================================

Security context: 0x1ee16a8cfb51 <JS Object>#0#
    1: .node [module.js:597] [pc=0x1d19d3dd9d04] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0x4ed5b42e989 <a Module with map 0x24b831d1c1f9>#2#,filename=0x4ed5b42b589 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    2: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0x4ed5b42e989 <a Module with map 0x24b831d1c1f9>#2#,filename=0x4ed5b42b589 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    3: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0x4ed5b42e989 <a Module with map 0x24b831d1c1f9>#2#,filename=0x4ed5b42b589 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    4: _loa <false>)
   53: require [module.js:~494] [pc=0x3075ae649433] (this=0x30113a8abfb1 <a Module with map 0x39e74fa1c1f9>#27#,path=0x2c29f4771159 <String[9]: ./monitor>)
   54: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f4771159 <String[9]: ./monitor>)
   55: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js:3] [pc=0x3075ae6504e1] (this=0x30113a8ac1f9 <an Object with map 0x4b9e09075e9>#28#,exports=0x30113a8ac1f9 <an Object with map 0x4b9e09075e9>#28#,require=0x30113a8ac041 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#29#,module=0x30113a8abfb1 <a Module with map 0x39e74fa1c1f9>#27#,__filename=0x30113a8ac191 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>,__dirname=0x30113a8ac169 <String[67]: /Users/__CENSORED__/node_modules/nodemon/lib>)
   56: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0x30113a8abfb1 <a Module with map 0x39e74fa1c1f9>#27#,content=0x30113a8ae031 <Very long string[7557]>#30#,filename=0x30113a8ac191 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>)
   57: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x30113a8abfb1 <a Module with map 0x39e74fa1c1f9>#27#,filename=0x30113a8ac191 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>)
   58: load [module.js:487] [pc=0x3075ae63fd92] (this=0x30113a8abfb1 <a Module with map 0x39e74fa1c1f9>#27#,filename=0x30113a8ac191 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>)
   59: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0x30113a8abfb1 <a Module with map 0x39e74fa1c1f9>#27#,filename=0x30113a8ac191 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemd [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x4ed5b424d39 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>,parent=0x2b42d430d8e9 <a Module with map 0x24b831d1c1f9>#4#,isMain=0x1ee16a804271 <false>)
    5: require [module.js:~494] [pc=0x1d19d3d9a70c] (this=0x2b42d430d8e9 <a Module with map 0x24b831d1c1f9>#4#,path=0x4ed5b424d39 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    6: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x4ed5b424d39 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    7: /* anonymous */ [/Users/__CENSORED__/node_modules/fsevents/fsevents.js:11] [pc=0x1d19d3d93bf2] (this=0x2b42d430dba1 <anon.js>)
   60: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f47706e9 <String[9]: ./nodemon>,parent=0x30113a8afdf1 <a Module with map 0x39e74fa1c1f9>#31#,isMain=0x163dbb204271 <false>)
   61: require [module.js:~494] [pc=0x3075ae649433] (this=0x30113a8afdf1 <a Module with map 0x39e74fa1c1f9>#31#,path=0x2c29f47706e9 <String[9]: ./nodemon>)
   62: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f47706e9 <String[9]: ./nodemon>)
   63: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/index.js:1] [pc=0x3075ae64fe3e] (this=0x30113a8affa1 <an Object with map 0x4b9e09075e9>#32#,exports=0x30113a8affa1 <an Object with map 0x4b9e09075e9>#32#,require=0x30113a8afe81 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#33#,module=0x30113a8afdf1 <a Module with map 0x39e74fa1c1f9>#31#,__filename=0x30113a8aff39 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>,__dirname=0x30113a8aff11 <String[67]: /Users/__CENSORED__/node_modules/nodemon/lib>)
   64: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0x30113a8afdf1 <a Module with map 0x39e74fa1c1f9>#31#,content=0x30113a8b0079 <String[38]: module.exports = require('./nodemon');>,filename=0x30113a8aff39 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   65: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x30113a8afdf1 <a Module with map 0x39e74fa1c1f9>#31#,filename=0x30113a8aff39 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   66: load [module.js:487] [pc=0x3075ae63fd92] (this=0x30113a8afdf1 <a Module with map 0x39e74fa1c1f9>#31#,filename=0x30113a8aff39 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   67: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0x30113a8afdf1 <a Module with map 0x39e74fa1c1f9>#31#,filename=0x30113a8aff39 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   68: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f475f4e9 <String[7]: ../lib/>,parent=0x2c29f47ca801 <a Module with map 0x39e74fa1c1f9>#34#,isMain=0x163dbb204271 <false>)
   69: require [module.js:~494] [pc=0x3075ae649433] (this=0x2c29f47ca801 <a Module with map 0x39e74fa1c1f9>#34#,path=0x2c29f475f4e9 <String[7]: ../lib/>)
   70: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f475f4e9 <String[7]: ../lib/>)
   71: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js:4] [pc=0x3075ae648918] (this=0x2c29f47ca9b1 <an Object with map 0x4b9e09075e9>#35#,exports= Object with map 0x3f9ff30075e9>#5#,exports=0x2b42d430dba1 <an Object with map 0x3f9ff30075e9>#5#,require=0x2b42d430d979 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#6#,module=0x2b42d430d8e9 <a Module with map 0x24b831d1c1f9>#4#,__filename=0x2b42d430db39 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>,__dirname=0x2b42d430db11 <String[64]: /Users/__CENSORED__/node_modules/fsevents>)
    8: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0x2b42d430d8e9 <a Module with map 0x24b831d1c1f9>#4#,content=0x2b42d430f539 <Very long string[3154]>#7#,filename=0x2b42d430db39 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)
    9: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0x2b42d430d8e9 <a Module with map 0x24b831d1c1f9>#4#,filename=0x2b42d430db39 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)
   10: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0x2b42d430d8e9 <a Module with map 0x24b831d1c1f9>#4#,filename=0x2b42d430db39 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)
   11: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0x2b42d430d8e9 <a Module with map 0x24b831d1c1f9>#4#,filename=0x2b42d430db39 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)
   12: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x2547505c0ce1 <String[8]: fsevents>,parent=0x2b42d4310e19 <a Module with map 0x24b831d1c1f9>#8#,isMain=0x1ee16a804271 <false>)
   13: require [module.js:~494] [pc=0x1d19d3d49433] (this=0x2b42d4310e19 <a Module with map 0x24b831d1c1f9>#8#,path=0x2547505c0ce1 <String[8]: fsevents>)
   14: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a80430x2c29f47ca9b1 <an Object with map 0x4b9e09075e9>#35#81 <undefined>,path=0x2547505c0ce1 <String[8]: fsevents>)
   15: /* anonymous */ [/Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js:7] [pc=0x1d19d3d9352a] (this=0x2b42d43110d1 <an Object with map 0x3f9ff30075e9>#9#,exports=0x2b42d43110d1 <an Object with map 0x3f9ff30075e9>#9#,require=0x2b42d4310ea9 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#10#,module=0x2b42d4310e19 <a Module with map 0x24b831d1c1f9>#8#,__filename=0x2b42d4311061 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>,__dirname=0x2b42d4311039 <String[68]: /Users/__CENSORED__/node_modules/chokidar/lib>)
   16: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0x2b42d4310e19 <a Module with map 0x24b831d1c1f9>#8#,content=0x2b42d43140a9 <Very long string[12063]>#11#,filename=0x2b42d4311061 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   17: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0x2b42d4310e19 <a Module with map 0x24b831d1c1f9>#8#,filename=0x2b42d4311061 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   18: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0x2b42d4310e19 <a Module with map 0x24b831d1c1f9>#8#,filename=0x2b42d4311061 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   19: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0x2b42d4310e19 <a Module with map 0x24b831d1c1f9>#8#,filename=0x2b42d4311061 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   20: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x2547505c13b9 <String[22]: ./lib/fsevents-handler>,parent=0xd2a8ac8fc59 <a Module with map 0x24b831d1c1f9>#12#,isMain=0x1ee16a804271 <false>)
   21: require [module.js:~494] [pc=0x1d19d3d49433] (this=0xd2a8ac8fc59 <a Module with map 0x24b831d1c1f9>#12#,path=0x2547505c13b9 <String[22]: ./lib/fsevents-handler>)
   22: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x2547505c13b9 <String[22]: ./lib/fsevents-handler>)
   23: /* anonymous */ [/Users/__CENSORED__/node_modules/chokidar/index.js:13] [pc=0x1d19d3d769d2] (this=0xd2a8ac8fef9 <an Object with map 0x3f9ff30075e9>#13#,exports=0xd2a8ac8fef9 <an Object with map 0x3f9ff30075e9>#13#,require=0xd2a8ac8fce9 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#14#,module=0xd2a8ac8fc59 <a Module with map 0x24b831d1c1f9>#12#,__filename=0xd2a8ac8fe91 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>,__dirname=0xd2a8ac8fe69 <String[64]: /Users/__CENSORED__/node_modules/chokidar>)
   24: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0xd2a8ac8fc59 <a Module with map 0x24b831d1c1f9>#12#,content=0xd2a8ac9aa81 <Very long string[21834]>#15#,filename=0xd2a8ac8fe91 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>)
   25: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0xd2a8ac8fc59 <a Module with map 0x24b831d1c1f9>#12#,filename=0xd2a8ac8fe91 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>)
   26: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0xd2a8ac8fc59 <a Module with map 0x24b831d1c1f9>#12#,filename=0xd2a8ac8fe91 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>)
   27: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0xd2a8ac8fc59 <a Module with map 0x24b831d1c1f9>#12#,filename=0xd2a8ac8fe91 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>)
   28: ,require=0x2c29f47ca891 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#36#,module=0x2c29f47ca801 <a Module with map 0x39e74fa1c1f9>#34#,__filename=0x2c29f47ca949 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>,__dirname=0x2c29f47ca921 <String[67]: /Users/__CENSORED__/node_modules/nodemon/bin>)
   72: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0x2c29f47ca801 <a Module with map 0x39e74fa1c1f9>#34#,content=0x2c29f47cac09 <String[422]\: \n'use strict';\nvar cli = require('../lib/cli');\nvar nodemon = require('../lib/');\nvar options = cli.parse(process.argv);\n\nnodemon(options);\n\nvar fs = require('fs');\n\n// checks for available update and returns an instance\nvar defaults = require('lodash.defaults');\nvar pkg = JSON.parse(fs.readFileSync(__dirname + '/../package.json'));\n\nrequire('update-notifier')({\n  pkg: defaults(pkg, { version: '0.0.0' }),\n}).notify();\n>,filename=0x2c29f47ca949 <String[78]: /Users/__CENSORED__/_rea_loaltyshares/_github/web/node_modules/nodemon/bin/nodemon.js>)
   73: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x2c29f47ca801 <a Module with map 0x39e74fa1c1f9>#34#,filename=0x2c29f47ca949 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>)
   74: load [module.js:487] [pc=0x3075ae63fd92] (this=0x2c29f47ca801 <a Module with map 0x39e74fa1c1f9>#34#,filename=0x2c29f47ca949 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>)
   75: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0x2c29f47ca801 <a Module with map 0x39e74fa1c1f9>#34#,filename=0x2c29f47ca949 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>)
   76: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f4753609 <String[68]:d [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x2547505b71d9 <String[8]: chokidar>,parent=0xd2a8aca5551 <a Module with map 0x24b831d1c1f9>#16#,isMain=0x1ee16a804271 <false>)
   29: require [module.js:~494] [pc=0x1d19d3d49433] (this=0xd2a8aca5551 <a Module with map 0x24b831d1c1f9>#16#,path=0x2547505b71d9 <String[8]: chokidar>)
   30: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x2547505b71d9 <String[8]: chokidar>)
   31: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js:7] [pc=0x1d19d3d70e0a] (this=0xd2a8aca5841 <an Object with map 0x24b831d2e5d1>#17#,exports=0xd2a8aca5841 <an Object with map 0x24b831d2e5d1>#17#,require=0xd2a8aca55e1 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#18#,module=0xd2a8aca5551 <a Module with map 0x24b831d1c1f9>#16#,__filename=0xd2a8aca57d1 <String[84]: /Users/__CENSORED__/___CENSORED__/ /Users/__CENSORED__/node_modules/.bin/nodemon>,parent=0x163dbb204201 <null>,isMain=0x163dbb2043c1 <true>)
   77: /* anonymous */(aka /* anonymous */) [module.js:604] [pc=0x3075ae633daa] (this=0x163dbb204381 <undefined>)
   78: run(aka run) [bootstrap_node.js:394] [pc=0x3075ae633c30] (this=0x163dbb204381 <undefined>,entryFunction=0x2c29f4752071 <JS Function Module.runMain (SharedFunctionInfo 0x2c29f472d111)>#37#)
   79: startup(aka startup) [bootstrap_node.js:149] [pc=0x3075ae544932] (this=0x163dbb204381 <undefined>)
   80: /* anonymous */(aka /* anonymous */) [bootstrap_node.js:509] [pc=0x3075ae542759] (this=0x163dbb204201 <null>,process=0x163dbb2e2761 <a process with map 0x4b9e0911a91>#38#)
=====================

_github/web/node_modules/nodemon/lib/monitor/watch.js>,__dirname=0xd2a8aca57a9 <String[75]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor>)
   32: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0xd2a8aca5551 <a Module with map 0x24b831d1c1f9>#16#,content=0xd2a8aca6af9 <Very long string[4612]>#19#,filename=0xd2a8aca57d1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   33: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0xd2a8aca5551 <a Module with map 0x24b831d1c1f9>#16#,filename=0xd2a8aca57d1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   34: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0xd2a8aca5551 <a Module with map 0x24b831d1c1f9>#16#,filename=0xd2a8aca57d1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   35: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0xd2a8aca5551 <a Module with map 0x24b831d1c1f9>#16#,filename=0xd2a8aca57d1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   36: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x254750598511 <String[7]: ./watch>,parent=0xd2a8aca7d39 <a Module with map 0x24b831d1c1f9>#20#,isMain=0x1ee16a804271 <false>)
   37: require [module.js:~494] [pc=0x1d19d3d49433] (this=0xd2a8aca7d39 <a Module with map 0x24b831d1c1f9>#20#,path=0x254750598511 <String[7]: ./watch>)
   38: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x254750598511 <String[7]: ./watch>)
   39: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js:7] [pc=0x1d19d3d63315] (this=0xd2a8aca7fd1 <an Object with map 0x3f9ff30075e9>#21#,exports=0xd2a8aca7fd1 <an 
==== C stack trace ===============================

Object with map 0x3f9ff30075e9>#21#,require=0xd2a8aca7dc9 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#22#,module=0xd2a8aca7d39 <a Module with map 0x24b831d1c1f9>#20#,__filename=0xd2a8aca7f61 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>,__dirname=0xd2a8aca7f39 <String[75]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor>)
   40: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0xd2a8aca7d39 <a Module with map 0x24b831d1c1f9>#20#,content=0xd2a8acaa839 <Very long string[10161]>#23#,filename=0xd2a8aca7f61 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   41: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0xd2a8aca7d39 <a Module with map 0x24b831d1c1f9>#20#,filename=0xd2a8aca7f61 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   42: load [module.js:487] [pc=0x1 1: d19d3d3fd92] (this=0xd2a8aca7d39 <a Module with map 0x24b831d1c1f9>#20#,filename=0xd2a8aca7f61 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   43: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0xd2a8aca7d39 <a Module with map 0x24b831d1c1f9>#20#,filename=0xd2a8aca7f61 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   44: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x2547505984f1 <String[5]: ./run>,parent=0xd2a8acad029 <a Module with map 0x24b831d1c1f9>#24#,isMain=0x1ee16a804271 <false>)
   45: require [module.js:~494] [pc=0x1d19d3d49433] (this=0xd2a8acad029 <a Module with map 0x24b831d1c1f9>#24#,path=0x2547505984f1 <String[5]: ./run>)
   46: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x2547505984f1 <String[5]: ./run>)
   47: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js:2] [pc=0x1d19d3d628b0] (this=0xd2a8acad209 <an Object with map 0x3f9ff30075e9>#25#,exports=0xd2a8acad209 <an Object with map 0x3f9ff30075e9>#25#,require=0xd2a8acad0b9 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#26#,module=0xd2a8acad029 <a Module with map 0x24b831d1c1f9>#24#,__filename=0xd2a8acad199 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>,__dirname=0xd2a8acad171 <String[75]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor>)
   48: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0xd2a8acad029 <a Module with map 0x24b831d1c1f9>#24#,content=0xd2a8acad311 <String[82]\: module.exports = {\n  run: require('./run'),\n  watch: require('./watch').watch,\n};\n>,filename=0xd2a8acad199 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   49: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0xd2a8acad029 <a Module with map 0x24b831d1c1f9>#24#,filename=0xd2a8acad199 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   50: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0xd2a8acad029 <a Module with map 0x24b831d1c1f9>#24#,filename=0xd2a8acad199 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   51: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0xd2a8acad029 <a Module with map 0x24b831d1c1f9>#24#,filename=0xd2a8acad199 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   52: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x254750571159 <String[9]: ./monitor>,parent=0xd2a8acad3a1 <a Module with map 0x24b831d1c1f9>#27#,isMain=0x1ee16a804271 <false>)
   53: require [module.js:~494] [pc=0x1d19d3d49433] (this=0xd2a8acad3a1 <a Module with map 0x24b831d1c1f9>#27#,path=0x254750571159 <String[9]: ./monitor>)
   54: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x254750571159 <String[9]: ./monitor>)
   55: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js:3] [pc=0x1d19d3d504e1] (this=0xd2a8acad5e9 <an Object with map 0x3f9ff30075e9>#28#,exports=0xd2a8acad5e9 <an Object with map 0x3f9ff30075e9>#28#,require=0xd2a8acad431 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#29#,module=0xd2a8acad3a1 <a Module with map 0x24b831d1c1f9>#27#,__filename=0xd2a8acad581 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>,__dirname=0xd2a8acad559 <String[67]: /Users/__CENSORED__/node_modules/nodemon/lib>)
   56: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0xd2a8acad3a1 <a Module with map 0x24b831d1c1f9>#27#,content=0xd2a8acaf421 <Very long string[7557]>#30#,filename=0xd2a8acad581 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>)
   57: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0xd2a8acad3a1 <a Module with map 0x24b831d1c1f9>#27#,filename=0xd2a8acad581 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>)
   58: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0xd2a8acad3a1 <a Module with map 0x24b831d1c1f9>#27#,filename=0xd2a8acad581 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>)
   59: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0xd2a8acad3a1 <a Module with map 0x24b831d1c1f9>#27#,filename=0xd2a8acad581 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>)
   60: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x2547505706e9 <String[9]: ./nodemon>,parent=0xd2a8acb11e1 <a Module with map 0x24b831d1c1f9>#31#,isMain=0x1ee16a804271 <false>)
   61: require [module.js:~494] [pc=0x1d19d3d49433] (this=0xd2a8acb11e1 <a Module with map 0x24b831d1c1f9>#31#,path=0x2547505706e9 <String[9]: ./nodemon>)
   62: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x2547505706e9 <String[9]: ./nodemon>)
   63: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/index.js:1] [pc=0x1d19d3d4fe3e] (this=0xd2a8acb1391 <an Object with map 0x3f9ff30075e9>#32#,exports=0xd2a8acb1391 <an Object with map 0x3f9ff30075e9>#32#,require=0xd2a8acb1271 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#33#,module=0xd2a8acb11e1 <a Module with map 0x24b831d1c1f9>#31#,__filename=0xd2a8acb1329 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>,__dirname=0xd2a8acb1301 <String[67]: /Users/__CENSORED__/node_modules/nodemon/lib>)
   64: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0xd2a8acb11e1 <a Module with map 0x24b831d1c1f9>#31#,content=0xd2a8acb1469 <String[38]: module.exports = require('./nodemon');>,filename=0xd2a8acb1329 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   65: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0xd2a8acb11e1 <a Module with map 0x24b831d1c1f9>#31#,filename=0xd2a8acb1329 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   66: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0xd2a8acb11e1 <a Module with map 0x24b831d1c1f9>#31#,filename=0xd2a8acb1329 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   67: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0xd2a8acb11e1 <a Module with map 0x24b831d1c1f9>#31#,filename=0xd2a8acb1329 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   68: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x25475055f4e9 <String[7]: ../lib/>,parent=0x2547505c9fc9 <a Module with map 0x24b831d1c1f9>#34#,isMain=0x1ee16a804271 <false>)
   69: require [module.js:~494] [pc=0x1d19d3d49433] (this=0x2547505c9fc9 <a Module with map 0x24b831d1c1f9>#34#,path=0x25475055f4e9 <String[7]: ../lib/>)
   70: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x25475055f4e9 <String[7]: ../lib/>)
   71: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js:4] [pc=0x1d19d3d48918] (this=0x2547505ca179 <an Object with map 0x3f9ff30075e9>#35#,exports=0x2547505ca179 <an Object with map 0x3f9ff30075e9>#35#,require=0x2547505ca059 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#36#,module=0x2547505c9fc9 <a Module with map 0x24b831d1c1f9>#34#,__filename=0x2547505ca111 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>,__dirname=0x2547505ca0e9 <String[67]: /Users/__CENSORED__/node_modules/nodemon/bin>)
   72: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0x2547505c9fc9 <a Module with map 0x24b831d1c1f9>#34#,content=0x2547505ca3d1 <String[422]\: \n'use strict';\nvar cli = require('../lib/cli');\nvar nodemon = require('../lib/');\nvar options = cli.parse(process.argv);\n\nnodemon(options);\n\nvar fs = require('fs');\n\n// checks for available update and returns an instance\nvar defaults = require('lodash.defaults');\nvar pkg = JSON.parse(fs.readFileSync(__dirname + '/../package.json'));\n\nrequire('update-notifier')({\n  pkg: defaults(pkg, { version: '0.0.0' }),\n}).notify();\n>,filename=0x2547505ca111 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>)
   73: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0x2547505c9fc9 <a Module with map 0x24b831d1c1f9>#34#,filename=0x2547505ca111 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>)
   74: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0x2547505c9fc9 <a Module with map 0x24b831d1c1f9>#34#,filename=0x2547505ca111 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>)
   75: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0x2547505c9fc9 <a Module with map 0x24b831d1c1f9>#34#,filename=0x2547505ca111 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>)
   76: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x25475v8::Template::Set(v8::Local<v8::Name>, v8::Local<v8::Data>, v8::PropertyAttribute)
0553609 <Stri 2: ng[68]: /Users/__CENSORED__/node_modules/.bin/nodemon>,parent=0x1ee16a804201 <null>,isMain=0x1ee16a8043c1 <true>)
   77: /* anonymous */(aka /* anonymous */) [module.js:604] [pc=0x1d19d3d33daa] (this=0x1ee16a804381 <undefined>)
   78: run(aka run) [bootstrap_node.js:394] [pc=0x1d19d3d33c30] (this=0x1ee16a804381 <undefined>,entryFunction=0x254750552071 <JS Function Module.runMain (SharedFunctionInfo 0x25475052d111)>#37#)
   79: startup(aka startup) [bootstrap_node.js:149] [pc=0x1d19d3c44932] (this=0x1ee16a804381 <undefined>)
   80: /* anonymous */(aka /* anonymous */) [bootstrap_node.js:509] [pc=0x1d19d3c42759] (this=0x1ee16a804201 <null>,process=0x1ee16a8e2761 <a process with map 0x3f9ff3011a91>#38#)
=====================


==== C stack trace ===============================

fse::FSEvents::Initialize(v8::Local<v8::Object>)
 1:  3: node::DLOpen(v8::FunctionCallbackInfo<v8::Value> const&)
 4: v8::Template::Set(v8::Local<v8::Name>, v8::Local<v8::Data>, v8::PropertyAttribute)
 2: fse::FSEvents::Initialize(v8::Local<v8::Object>)
 3: v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
 5: node::DLOpen(v8::FunctionCallbackInfo<v8::Value> const&)
 4: v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::(anonymous namespace)::BuiltinArguments<(v8::internal::BuiltinExtraArguments)1>)
 6: v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
 7: 0x3075ae5092a7
v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
 5: (node) v8::ObjectTemplate::Set() with non-primitive values is deprecated
(node) and will stop working in the next major release.
v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::(anonymous namespace)::BuiltinArguments<(v8::internal::BuiltinExtraArguments)1>)
 6: v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
 7: 0x1d19d3c092a7
(node) v8::ObjectTemplate::Set() with non-primitive values is deprecated
(node) and will stop working in the next major release.

==== JS stack trace =========================================

Security context: 0x163dbb2cfb51 <JS Object>#0#
    1: .node [module.js:597] [pc=0x3075ae6d9044] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x24df3992efb9 <a Module with map 0x39e74fa1c1f9>#2#,filename=0x24df3992bbb9 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    2: load [module.js:487] [pc=0x3075ae63fd92] (this=0x24df3992efb9 <a Module with map 0x39e74fa1c1f9>#2#,filename=0x24df3992bbb9 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    3: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0x24df3992efb9 <a Module with map 0x39e74fa1c1f9>#2#,filename=0x24df3992bbb9 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    4: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x24df39925369 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>,parent=0xa0900dbe1 <a Module with map 0x39e74fa1c1f9>#4#,isMain=0x163dbb204271 <false>)
    5: require [module.js:~494] [pc=0x3075ae69c22c] (this=0xa0900dbe1 <a Module with map 0x39e74fa1c1f9>#4#,path=0x24df39925369 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    6: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x24df39925369 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    7: /* anonymous */ [/Users/__CENSORED__/node_modules/fsevents/fsevents.js:11] [pc=0x3075ae695712] (this=0xa0900de99 <an Object with map 0x4b9e09075e9>#5#,exports=0xa0900de99 <an Object with map 0x4b9e09075e9>#5#,require=0xa0900dc71 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#6#,module=0xa0900dbe1 <a Module with map 0x39e74fa1c1f9>#4#,__filename=0xa0900de31 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>,__dirname=0xa0900de09 <String[64]: /Users/__CENSORED__/node_modules/fsevents>)
    8: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0xa0900dbe1 <a Module with map 0x39e74fa1c1f9>#4#,content=0xa0900f831 <Very long string[3154]>#7#,filename=0xa0900de31 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)
    9: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0xa0900dbe1 <a Module with map 0x39e74fa1c1f9>#4#,filename=0xa0900de31 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)
   10: load [module.js:487] [pc=0x3075ae63fd92] (this=0xa0900dbe1 <a Module with map 0x39e74fa1c1f9>#4#,filename=0xa0900de31 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)
   11: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0xa0900dbe1 <a Module with map 0x39e74fa1c1f9>#4#,filename=0xa0900de31 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)
   12: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f47c1961 <String[8]: fsevents>,parent=0xa09011111 <a Module with map 0x39e74fa1c1f9>#8#,isMain=0x163dbb204271 <false>)
   13: require [module.js:~494] [pc=0x3075ae649433] (this=0xa09011111 <a Module with map 0x39e74fa1c1f9>#8#,path=0x2c29f47c1961 <String[8]: fsevents>)
   14: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f47c1961 <String[8]: fsevents>)
   15: /* anonymous */ [/Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js:7] [pc=0x3075ae69504a] (this=0xa090113c9 <an Object with map 0x4b9e09075e9>#9#,exports=0xa090113c9 <an Object with map 0x4b9e09075e9>#9#,require=0xa090111a1 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#10#,module=0xa09011111 <a Module with map 0x39e74fa1c1f9>#8#,__filename=0xa09011359 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>,__dirname=0xa09011331 <String[68]: /Users/__CENSORED__/node_modules/chokidar/lib>)
   16: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0xa09011111 <a Module with map 0x39e74fa1c1f9>#8#,content=0xa090143a1 <Very long string[12063]>#11#,filename=0xa09011359 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   17: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0xa09011111 <a Module with map 0x39e74fa1c1f9>#8#,filename=0xa09011359 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   18: load [module.js:487] [pc=0x3075ae63fd92] (this=0xa09011111 <a Module with map 0x39e74fa1c1f9>#8#,filename=0xa09011359 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   19: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0xa09011111 <a Module with map 0x39e74fa1c1f9>#8#,filename=0xa09011359 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   20: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f47c2039 <String[22]: ./lib/fsevents-handler>,parent=0x30113a88e869 <a Module with map 0x39e74fa1c1f9>#12#,isMain=0x163dbb204271 <false>)
   21: require [module.js:~494] [pc=0x3075ae649433] (this=0x30113a88e869 <a Module with map 0x39e74fa1c1f9>#12#,path=0x2c29f47c2039 <String[22]: ./lib/fsevents-handler>)
   22: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f47c2039 <String[22]: ./lib/fsevents-handler>)
   23: /* anonymous */ [/Users/__CENSORED__/node_modules/chokidar/index.js:13] [pc=0x3075ae6777b2] (this=0x30113a88eb09 <an Object with map 0x4b9e09075e9>#13#,exports=0x30113a88eb09 <an Object with map 0x4b9e09075e9>#13#,require=0x30113a88e8f9 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#14#,module=0x30113a88e869 <a Module with map 0x39e74fa1c1f9>#12#,__filename=0x30113a88eaa1 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>,__dirname=0x30113a88ea79 <String[64]: /Users/__CENSORED__/node_modules/chokidar>)
   24: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0x30113a88e869 <a Module with map 0x39e74fa1c1f9>#12#,content=0x30113a899691 <Very long string[21834]>#15#,filename=0x30113a88eaa1 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>)
   25: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x30113a88e869 <a Module with map 0x39e74fa1c1f9>#12#,filename=0x30113a88eaa1 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>)
   26: load [module.js:487] [pc=0x3075ae63fd92] (this=0x30113a88e869 <a Module with map 0x39e74fa1c1f9>#12#,filename=0x30113a88eaa1 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>)
   27: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0x30113a88e869 <a Module with map 0x39e74fa1c1f9>#12#,filename=0x30113a88eaa1 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>)
   28: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f47b7e59 <String[8]: chokidar>,parent=0x30113a8a4161 <a Module with map 0x39e74fa1c1f9>#16#,isMain=0x163dbb204271 <false>)
   29: require [module.js:~494] [pc=0x3075ae649433] (this=0x30113a8a4161 <a Module with map 0x39e74fa1c1f9>#16#,path=0x2c29f47b7e59 <String[8]: chokidar>)
   30: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f47b7e59 <String[8]: chokidar>)
   31: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js:7] [pc=0x3075ae671bea] (this=0x30113a8a4451 <an Object with map 0x39e74fa2e5d1>#17#,exports=0x30113a8a4451 <an Object with map 0x39e74fa2e5d1>#17#,require=0x30113a8a41f1 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#18#,module=0x30113a8a4161 <a Module with map 0x39e74fa1c1f9>#16#,__filename=0x30113a8a43e1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>,__dirname=0x30113a8a43b9 <String[75]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor>)
   32: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0x30113a8a4161 <a Module with map 0x39e74fa1c1f9>#16#,content=0x30113a8a5709 <Very long string[4612]>#19#,filename=0x30113a8a43e1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   33: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x30113a8a4161 <a Module with map 0x39e74fa1c1f9>#16#,filename=0x30113a8a43e1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   34: load [module.js:487] [pc=0x3075ae63fd92] (this=0x30113a8a4161 <a Module with map 0x39e74fa1c1f9>#16#,filename=0x30113a8a43e1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   35: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0x30113a8a4161 <a Module with map 0x39e74fa1c1f9>#16#,filename=0x30113a8a43e1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   36: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f4798089 <String[7]: ./watch>,parent=0x30113a8a6949 <a Module with map 0x39e74fa1c1f9>#20#,isMain=0x163dbb204271 <false>)
   37: require [module.js:~494] [pc=0x3075ae649433] (this=0x30113a8a6949 <a Module with map 0x39e74fa1c1f9>#20#,path=0x2c29f4798089 <String[7]: ./watch>)
   38: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f4798089 <String[7]: ./watch>)
   39: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js:7] [pc=0x3075ae662fb5] (this=0x30113a8a6be1 <an Object with map 0x4b9e09075e9>#21#,exports=0x30113a8a6be1 <an Object with map 0x4b9e09075e9>#21#,require=0x30113a8a69d9 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#22#,module=0x30113a8a6949 <a Module with map 0x39e74fa1c1f9>#20#,__filename=0x30113a8a6b71 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>,__dirname=0x30113a8a6b49 <String[75]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor>)
   40: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0x30113a8a6949 <a Module with map 0x39e74fa1c1f9>#20#,content=0x30113a8a9449 <Very long string[10161]>#23#,filename=0x30113a8a6b71 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   41: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x30113a8a6949 <a Module with map 0x39e74fa1c1f9>#20#,filename=0x30113a8a6b71 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   42: load [module.js:487] [pc=0x3075ae63fd92] (this=0x30113a8a6949 <a Module with map 0
==== JS stack trace =========================================

Security context: 0x1ee16a8cfb51 <JS Object>#0#
    1: .node [module.js:597] [pc=0x1d19d3dd9d04] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0x4ed5b42e989 <a Module with map 0x24b831d1c1f9>#2#,filename=0x4ed5b42b589 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    2: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0x4ed5b42e989 <a Module with map 0x24b831d1c1f9>#2#,filename=0x4ed5b42b589 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    3: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0x4ed5b42e989 <a Module with map 0x24b831d1c1f9>#2#,filename=0x4ed5b42b589 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    4: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x4ed5b424d39 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>,parent=0x2b42d430d8e9 <a Module with map 0x24b831d1c1f9>#4#,isMain=0x1ee16a804271 <false>)
    5: require [module.js:~494] [pc=0x1d19d3d9a70c] (this=0x2b42d430d8e9 <a Module with map 0x24b831d1c1f9>#4#,path=0x4ed5b424d39 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    6: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x4ed5b424d39 <String[113]: /Users/__CENSORED__/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node>)
    7: /* anonymous */ [/Users/__CENSORED__/node_modules/fsevents/fsevents.js:11] [pc=0x1d19d3d93bf2] (this=0x39e74fa1c1f9>#20#,filename=0x30113a8a6b71 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   43: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0x30113a8a6949 <a Module with map 0x39e74fa1c1f9>#20#,filename=0x30113a8a6b71 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   44: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f4798069 <String[5]: ./run>,parent=0x30113a8abc39 <a Module with map 0x39e74fa1c1f9>#24#,isMain=0x163dbb204271 <false>)
   45: require [module.js:~494] [pc=0x3075ae649433] (this=0x30113a8abc39 <a Module with map 0x39e74fa1c1f9>#24#,path=0x2c29f4798069 <String[5]: ./run>)
   46: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f4798069 <String[5]: ./run>)
   47: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js:2] [pc=0x3075ae662770] (this=0x30113a8abe19 <an Object with map 0x4b9e09075e9>#25#,exports=0x30113a8abe19 <an Object with map 0x4b9e09075e9>#25#,require=0x30113a8abcc9 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#26#,module=0x30113a8abc39 <a Module with map 0x39e74fa1c1f9>#24#,__filename=0x30113a8abda9 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>,__dirname=0x30113a8abd81 <String[75]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor>)
   48: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0x30113a8abc39 <a Module with map 0x39e74fa1c1f9>#24#,content=0x30113a8abf21 <String[82]\: module.exports = {\n  run: require('./run'),\n  watch: require('./watch').watch,\n};\n>,filename=0x30113a8abda9 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   49: .js [module.js:579] [pc=0x3075ae64136bx2b42d430dba1 <an] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x30113a8abc39 <a Module with map 0x39e74fa1c1f9>#24#,filename=0x30113a8abda9 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   50: load [module.js:487] [pc=0x3075ae63fd92] (this=0x30113a8abc39 <a Module with map 0x39e74fa1c1f9>#24#,filename=0x30113a8abda9 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   51: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0x30113a8abc39 <a Module with map 0x39e74fa1c1f9>#24#,filename=0x30113a8abda9 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   52: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f4771159 <String[9]: ./monitor>,parent=0x30113a8abfb1 <a Module with map 0x39e74fa1c1f9>#27#,isMain=0x163dbb204271 <false>)
   53: require [module.js:~494] [pc=0x3075ae649433] (this=0x30113a8abfb1 <a Module with map 0x39e74fa1c1f9>#27#,path=0x2c29f4771159 <String[9]: ./monitor>)
   54: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f4771159 <String[9]: ./monitor>)
   55: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js:3] [pc=0x3075ae6504e1] (this=0x30113a8ac1f9 <an Object with map 0x4b9e09075e9>#28#,exports=0x30113a8ac1f9 <an Object with map 0x4b9e09075e9>#28#,require=0x30113a8ac041 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#29#,module=0x30113a8abfb1 <a Module with map 0x39e74fa1c1f9>#27#,__filename=0x30113a8ac191 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>,__dirname=0x30113a8ac169 <String[67]: /Users/__CENSORED__/node_modules/nodemon/lib>)
   56: _compile [module.js:570] [pc=0x3075ae6483b4] (this Object with map 0x3f9ff30075e9>#5#,exports=0x2b42d430dba1 <an Object with map 0x3f9ff30075e9>#5#,require=0x2b42d430d979 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#6#,module=0x2b42d430d8e9 <a Module with map 0x24b831d1c1f9>#4#,__filename=0x2b42d430db39 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>,__dirname=0x2b42d430db11 <String[64]: /Users/__CENSORED__/node_modules/fsevents>)
    8: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0x2b42d430d8e9 <a Module with map 0x24b831d1c1f9>#4#,content=0x2b42d430f539 <Very long string[3154]>#7#,filename=0x2b42d430db39 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)
    9: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0x2b42d430d8e9 <a Module with map 0x24b831d1c1f9>#4#,filename=0x2b42d430db39 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)=0x30113a8abfb1 <a Module with 
   10: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0x2b42d430d8e9 <a Module with map 0x24b831d1c1f9>#4#,filename=0x2b42d430db39 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)
   11: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0x2b42d430d8e9 <a Module with map 0x24b831d1c1f9>#4#,filename=0x2b42d430db39 <String[76]: /Users/__CENSORED__/node_modules/fsevents/fsevents.js>)
   12: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x2547505c0ce1 <String[8]: fsevents>,parent=0x2b42d4310e19 <a Module with map 0x24b831d1c1f9>#8#,isMain=0x1ee16a804271 <false>)
   13: require [module.js:~494] [pc=0x1d19d3d49433] (this=0x2b42d4310e19 <a Module with map 0x24b831d1c1f9>#8#,path=0x2547505c0ce1 <String[8]: fsevents>)
   14: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x2547505c0ce1 <String[8]: fsevents>)
   15: /* anonymous */ [/Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js:7] [pc=0x1d19d3d9352a] (this=0x2b42d43110d1 <an Object with map 0x3f9ff30075e9>#9#,exports=0x2b42d43110d1 <an Object with map 0x3f9ff30075e9>#9#,require=0x2b42d4310ea9 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#10#,module=0x2b42d4310e19 <a Module with map 0x24b831d1c1f9>#8#,__filename=0x2b42d4311061 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>,__dirname=0x2b42d4311039 <String[68]: /Users/__CENSORED__/node_modules/chokidar/lib>)
   16: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0x2b42d4310e19 <a Module with map 0x24b831d1c1f9>#8#,content=0x2b42d43140a9 <Very long string[12063]>#11#,filename=0x2b42d4311061 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   17: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0x2b42d4310e19 <a Module with map 0x24b831d1c1f9>#8#,filename=0x2b42d4311061 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   18: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0x2b42d4310e19 <a Module with map 0x24b831d1c1f9>#8#,filename=0x2b42d4311061 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   19: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0x2b42d4310e19 <a Module with map 0x24b831d1c1f9>#8#,filename=0x2b42d4311061 <String[88]: /Users/__CENSORED__/node_modules/chokidar/lib/fsevents-handler.js>)
   20: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x2547505c13b9 <String[22]: ./lib/fsevents-handler>,parent=0xd2a8ac8fc59 <a Module with map 0x24bmap 0x39e74fa1c1f9>#27#,content=0x30113a8ae031 <Very long string[7557]>#30#,filename=0x30113a8ac191 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>)
   57: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x30113a8abfb1 <a Module with map 0x39e74fa1c1f9>#27#,filename=0x30113a8ac191 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>)
   58: load [module.js:487] [pc=0x3075ae63fd92] (this=0x30113a8abfb1 <a Module with map 0x39e74fa1c1f9>#27#,filename=0x30113a8ac191 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>)
   59: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0x30113a8abfb1 <a Module with map 0x39e74fa1c1f9>#27#,filename=0x30113a8ac191 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>)
   60: _load [module831d1c1f9>#12#,isMain=0x1ee16a804271 <false>)
   21: require [module.js:~494] [pc=0x1d19d3d49433] (this=0xd2a8ac8fc59 <a Module with map 0x24b831d1c1f9>#12#,path=0x2547505c13b9 <String[22]: ./lib/fsevents-handler>)
   22: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x2547505c13b9 <String[22]: ./lib/fsevents-handler>)
   23: /* anonymous */ [/Users/__CENSORED__/node_modules/chokidar/index.js:13] [pc=0x1d19d3d769d2] (this=0xd2a8ac8fef9 <an Object with map 0x3f9ff30075e9>#13#,exports=0xd2a8ac8fef9 <an Object with map 0x3f9ff30075e9>#13#,require=0xd2a8ac8fce9 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#14#,module=0xd2a8ac8fc59 <a Module with map 0x24b831d1c1f9>#12#,__filename=0xd2a8ac8fe91 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>,__dirname=0xd2a8ac8fe69 <String[64]: /Users/__CENSORED__/node_modules/chokidar>)
   24: _compile [module.js:570] [pc=0x1d1.js:438] [9d3d483b4] (this=0xd2a8ac8fc59 <a Module with map 0x24b831d1c1f9>#12#,content=0xd2a8ac9aa81 <Very long string[21834]>#15#,filename=0xd2a8ac8fe91 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>)
   25: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0xd2a8ac8fc59 <a Module with map 0x24b831d1c1f9>#12#,filename=0xd2a8ac8fe91 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>)
   26: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0xd2a8ac8fc59 <a Module with map 0x24b831d1c1f9>#12#,filename=0xd2a8ac8fe91 <String[73]: /Users/__CENSORED__/node_modules/chokidar/index.js>)
   27: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0xd2a8ac8fc59 <a Module with map 0x24b831d1c1f9>#12#,filename=0xd2a8ac8fe91 <String[73]: /Users/__CENSORED__/node_modules/chokidar/indexpc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f47706e9 <String[9]: ./nodemon>,parent=0x30113a8afdf1 <a Module with map 0x39e74fa1c1f9>#31#,isMain=0x163dbb204271 <false>)
   61: require [module.js:~494] [pc=0x3075ae649433] (this=0x30113a8afdf1 <a Module with map 0x39e74fa1c1f9>#31#,path=0x2c29f47706e9 <String[9]: ./nodemon>)
   62: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f47706e9 <String[9]: ./nodemon>)
   63: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/index.js:1] [pc=0x3075ae64fe3e] (this=0x30113a8affa1 <an Object with map 0x4b9e09075e9>#32#,exports=0x30113a8affa1 <an Object with map 0x4b9e09075e9>#32#,require=0x30113a8afe81 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#33#,module=0x30113a8afdf1 <a Module with map 0x39e74fa1c1f9>#31#,__filename=0x30113a8aff39 <String[76]: /Users/__CENSORED__/node_mo.js>)
   28: _loadules/nodemon/lib/index.js>,__dirname=0x30113a8aff11 <String[67]: /Users/__CENSORED__/node_modules/nodemon/lib>)
   64: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0x30113a8afdf1 <a Module with map 0x39e74fa1c1f9>#31#,content=0x30113a8b0079 <String[38]: module.exports = require('./nodemon');>,filename=0x30113a8aff39 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   65: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x30113a8afdf1 <a Module with map 0x39e74fa1c1f9>#31#,filename=0x30113a8aff39 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   66: load [module.js:487] [pc=0x3075ae63fd92] (this=0x30113a8afdf1 <a Module with map 0x39e74fa1c1f9>#31#,filename=0x30113a8aff39 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   67: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] d [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x2547505b71d9 <String[8]: chokidar>,parent=0xd2a8aca5551 <a Module with map 0x24b831d1c1f9>#16#,isMain=0x1ee16a804271 <false>)
   29: require [module.js:~494] [pc=0x1d19d3d49433] (this=0xd2a8aca5551 <a Module with map 0x24b831d1c1f9>#16#,path=0x2547505b71d9 <String[8]: chokidar>)
   30: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x2547505b71d9 <String[8]: chokidar>)
   31: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js:7] [pc=0x1d19d3d70e0a] (this=0xd2a8aca5841 <an Object with map 0x24b831d2e5d1>#17#,exports=0xd2a8aca5841 <an Object with map 0x24b831d2e5d1>#17#,require=0xd2a8aca55e1 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#18#,module=0xd2a8aca5551 <a Module with map 0x24b831d1c1f9>#16#,__filename=0xd2a8aca57d1 <String[84]: /Users/__CENSORED__/___CENSORED__/(this=0x163dbb204381 <undefined>,module=0x30113a8afdf1 <a Module with map 0x39e74fa1c1f9>#31#,filename=0x30113a8aff39 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   68: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f475f4e9 <String[7]: ../lib/>,parent=0x2c29f47ca801 <a Module with map 0x39e74fa1c1f9>#34#,isMain=0x163dbb204271 <false>)
   69: require [module.js:~494] [pc=0x3075ae649433] (this=0x2c29f47ca801 <a Module with map 0x39e74fa1c1f9>#34#,path=0x2c29f475f4e9 <String[7]: ../lib/>)
   70: require(aka require) [internal/module.js:20] [pc=0x3075ae649166] (this=0x163dbb204381 <undefined>,path=0x2c29f475f4e9 <String[7]: ../lib/>)
   71: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js:4] [pc=0x3075ae648918] (this=0x2c29f47ca9b1 <an Object with map 0x4b9e09075e9>#35#,exports=0x2c29f47ca9b1 <an Object with map 0x4b9e09075e9>#35#_github/web/node_modules/nodemon/lib/monitor/watch.js>,__dirname=0xd2a8aca57a9 <String[75]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor>)
   32: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0xd2a8aca5551 <a Module with map 0x24b831d1c1f9>#16#,content=0xd2a8aca6af9 <Very long string[4612]>#19#,filename=0xd2a8aca57d1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   33: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0xd2a8aca5551 <a Module with map 0x24b831d1c1f9>#16#,filename=0xd2a8aca57d1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   34: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0xd2a8aca5551 <a Module with map 0x24b831d1c1f9>#16#,filename=0xd2a8aca57d1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   35: tryModuleLoad(aka tryModuleLoad) [module.j,require=0x2c29f47ca891 <JS Function require (SharedFunctionInfo 0x2c29f475fdf9)>#36#,module=0x2c29f47ca801 <a Module with map 0x39e74fa1c1f9>#34#,__filename=0x2c29f47ca949 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>,__dirname=0x2c29f47ca921 <String[67]: /Users/__CENSORED__/node_modules/nodemon/bin>)
   72: _compile [module.js:570] [pc=0x3075ae6483b4] (this=0x2c29f47ca801 <a Module with map 0x39e74fa1c1f9>#34#,content=0x2c29f47cac09 <String[422]\: \n'use strict';\nvar cli = require('../lib/cli');\nvar nodemon = require('../lib/');\nvar options = cli.parse(process.argv);\n\nnodemon(options);\n\nvar fs = require('fs');\n\n// checks for available update and returns an instance\nvar defaults = require('lodash.defaults');\nvar pkg = JSON.parse(fs.readFileSync(__dirname + '/../package.json'));\n\nrequire('update-notifier')({\n  pkg: defaults(pkg, { version: '0.0.0' }),\n}).notify();\n>,filename=0x2c29f47ca949 <String[78]: /Users/__CENSORED__/_reals:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0xd2a8aca5551 <a Module with map 0x24b831d1c1f9>#16#,filename=0xd2a8aca57d1 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/watch.js>)
   36: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x254750598511 <String[7]: ./watch>,parent=0xd2a8aca7d39 <a Module with map 0x24b831d1c1f9>#20#,isMain=0x1ee16a804271 <false>)
   37: require [module.js:~494] [pc=0x1d19d3d49433] (this=0xd2a8aca7d39 <a Module with map 0x24b831d1c1f9>#20#,path=0x254750598511 <String[7]: ./watch>)
   38: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x254750598511 <String[7]: ./watch>)
   39: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js:7] [pc=0x1d19d3d63315] (this=0xd2a8aca7fd1 <an Object with map 0x3f9ff30075e9>#21#,exports=0xd2a8aca7fd1 <an tyshares/_github/web/node_modules/nodemon/bin/nodemon.js>)
   73: .js [module.js:579] [pc=0x3075ae64136b] (this=0x2c29f47ca739 <an Object with map 0x39e74fa1b179>#1#,module=0x2c29f47ca801 <a Module with map 0x39e74fa1c1f9>#34#,filename=0x2c29f47ca949 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>)
   74: load [module.js:487] [pc=0x3075ae63fd92] (this=0x2c29f47ca801 <a Module with map 0x39e74fa1c1f9>#34#,filename=0x2c29f47ca949 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>)
   75: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x3075ae63f8bd] (this=0x163dbb204381 <undefined>,module=0x2c29f47ca801 <a Module with map 0x39e74fa1c1f9>#34#,filename=0x2c29f47ca949 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>)
   76: _load [module.js:438] [pc=0x3075ae6342e2] (this=0x2c29f47ca7b9 <JS Function Module (SharedFunctionInfo 0x2c29f472c2d1)>#3#,request=0x2c29f4753609 <String[68]:Object with map 0x3f9ff30075e9>#21#,require=0xd2a8aca7dc9 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#22#,module=0xd2a8aca7d39 <a Module with map 0x24b831d1c1f9>#20#,__filename=0xd2a8aca7f61 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>,__dirname=0xd2a8aca7f39 <String[75]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor>)
   40: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0xd2a8aca7d39 <a Module with map 0x24b831d1c1f9>#20#,content=0xd2a8acaa839 <Very long string[10161]>#23#,filename=0xd2a8aca7f61 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   41: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0xd2a8aca7d39 <a Module with map 0x24b831d1c1f9>#20#,filename=0xd2a8aca7f61 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   42: load [module.js:487] [pc=0x1 /Users/__CENSORED__/node_modules/.bin/nodemon>,parent=0x163dbb204201 <null>,isMain=0x163dbb2043c1 <true>)
   77: /* anonymous */(aka /* anonymous */) [module.js:604] [pc=0x3075ae633daa] (this=0x163dbb204381 <undefined>)
   78: run(aka run) [bootstrap_node.js:394] [pc=0x3075ae633c30] (this=0x163dbb204381 <undefined>,entryFunction=0x2c29f4752071 <JS Function Module.runMain (SharedFunctionInfo 0x2c29f472d111)>#37#)
   79: startup(aka startup) [bootstrap_node.js:149] [pc=0x3075ae544932] (this=0x163dbb204381 <undefined>)
   80: /* anonymous */(aka /* anonymous */) [bootstrap_node.js:509] [pc=0x3075ae542759] (this=0x163dbb204201 <null>,process=0x163dbb2e2761 <a process with map 0x4b9e0911a91>#38#)
=====================

d19d3d3fd92] (this=0xd2a8aca7d39 <a Module with map 0x24b831d1c1f9>#20#,filename=0xd2a8aca7f61 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   43: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0xd2a8aca7d39 <a Module with map 0x24b831d1c1f9>#20#,filename=0xd2a8aca7f61 <String[82]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/run.js>)
   44: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x2547505984f1 <String[5]: ./run>,parent=0xd2a8acad029 <a Module with map 0x24b831d1c1f9>#24#,isMain=0x1ee16a804271 <false>)
   45: require [module.js:~494] [pc=0x1d19d3d49433] (this=0xd2a8acad029 <a Module with map 0x24b831d1c1f9>#24#,path=0x2547505984f1 <String[5]: ./run>)
   46: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x2547505984f1 <S
==== C stack trace ===============================

tring[5]: ./run>)
   47: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js:2] [pc=0x1d19d3d628b0] (this=0xd2a8acad209 <an Object  1: with map 0x3f9ff30075e9>#25#,exports=0xd2a8acad209 <an Object with map 0x3f9ff30075e9>#25#,require=0xd2a8acad0b9 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#26#,module=0xd2a8acad029 <a Module with map 0x24b831d1c1f9>#24#,__filename=0xd2a8acad199 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>,__dirname=0xd2a8acad171 <String[75]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor>)
   48: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0xd2a8acad029 <a Module with map 0x24b831d1c1f9>#24#,content=0xd2a8acad311 <String[82]\: module.exports = {\n  run: require('./run'),\n  watch: require('./watch').watch,\n};\n>,filename=0xd2a8acad199 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   49: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0xd2a8acad029 <a Module with map 0x24b831d1c1f9>#24#,filename=0xd2a8acad199 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   50: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0xd2a8acad029 <a Module with map 0x24b831d1c1f9>#24#,filename=0xd2a8acad199 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   51: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0xd2a8acad029 <a Module with map 0x24b831d1c1f9>#24#,filename=0xd2a8acad199 <String[84]: /Users/__CENSORED__/node_modules/nodemon/lib/monitor/index.js>)
   52: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x254750571159 <String[9]: ./monitor>,parent=0xd2a8acad3a1 <a Module with map 0x24b831d1c1f9>#27#,isMain=0x1ee16a804271 <false>)
   53: require [module.js:~494] [pc=0x1d19d3d49433] (this=0xd2a8acad3a1 <a Module with map 0x24b831d1c1f9>#27#,path=0x254750571159 <String[9]: ./monitor>)
   54: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x254750571159 <String[9]: ./monitor>)
   55: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js:3] [pc=0x1d19d3d504e1] (this=0xd2a8acad5e9 <an Object with map 0x3f9ff30075e9>#28#,exports=0xd2a8acad5e9 <an Object with map 0x3f9ff30075e9>#28#,require=0xd2a8acad431 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#29#,module=0xd2a8acad3a1 <a Module with map 0x24b831d1c1f9>#27#,__filename=0xd2a8acad581 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>,__dirname=0xd2a8acad559 <String[67]: /Users/__CENSORED__/node_modules/nodemon/lib>)
   56: _compile [module.js:570] [pc=0x1d19d3d483b4] (thv8::Template::Set(v8::Local<v8::Name>, v8::Local<v8::Data>, v8::PropertyAttribute)
 2: is=0xd2a8acad3a1 <a Module with map 0x24b831d1c1f9>#27#,content=0xd2a8acaf421 <Very long string[7557]>#30#,filename=0xd2a8acad581 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>)
   57: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0xd2a8acad3a1 <a Module with map 0x24b831d1c1f9>#27#,filename=0xd2a8acad581 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>)
   58: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0xd2a8acad3a1 <a Module with map 0x24b831d1c1f9>#27#,filename=0xd2a8acad581 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>)
   59: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0xd2a8acad3a1 <a Module with map 0x24b831d1c1f9>#27#,filename=0xd2a8acad581 <String[78]: /Users/__CENSORED__/node_modules/nodemon/lib/nodemon.js>)
   60: _lofse::FSEvents::Initialize(v8::Local<v8::Object>)
ad [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x2547505706e9 <String[9]: ./nodemon>,parent=0xd2a8acb11e1 <a Module with map 0x24b831d1c1f9>#31#,isMain=0x1ee16a804271 <false>)
   61: require [module.js:~494] [pc=0x1d19d3d49433] (this=0xd2a8acb11e1 <a Module with map 0x24b831d1c1f9>#31#,path=0x2547505706e9 <String[9]: ./nodemon>)
   62: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x2547505706e9 <String[9]: ./nodemon>)
   63: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/lib/index.js:1] [pc=0x1d19d3d4fe3e] (this=0xd2a8acb1391 <an Object with map 0x3f9ff30075e9>#32#,exports=0xd2a8acb1391 <an Object with map 0x3f9ff30075e9>#32#,require=0xd2a8acb1271 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#33#,module=0xd2a8acb11e1 <a Module with map 0x24b831d1c1f9>#31#,__filename=0xd2a8acb1329 <String[76]: /Users/__CENSORED__/___CENSORED__/_git 3: hub/web/node_modules/nodemon/lib/index.js>,__dirname=0xd2a8acb1301 <String[67]: /Users/__CENSORED__/node_modules/nodemon/lib>)
   64: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0xd2a8acb11e1 <a Module with map 0x24b831d1c1f9>#31#,content=0xd2a8acb1469 <String[38]: module.exports = require('./nodemon');>,filename=0xd2a8acb1329 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   65: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0xd2a8acb11e1 <a Module with map 0x24b831d1c1f9>#31#,filename=0xd2a8acb1329 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   66: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0xd2a8acb11e1 <a Module with map 0x24b831d1c1f9>#31#,filename=0xd2a8acb1329 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   67: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0xd2a8acb11e1 <a Module with map 0x24b831d1c1f9>#31#,filename=0xd2a8acb1329 <String[76]: /Users/__CENSORED__/node_modules/nodemon/lib/index.js>)
   68: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x25475055f4e9 <String[7]: ../lib/>,parent=0x2547505c9fc9 <a Module with map 0x24b831d1c1f9>#34#,isMain=0x1ee16a804271 <false>)
   69: require [module.js:~494] [pc=0x1d19d3d49433] (this=0x2547505c9fc9 <a Module with map 0x24b831d1c1f9>#34#,path=0x25475055f4e9 <String[7]: ../lib/>)
   70: require(aka require) [internal/module.js:20] [pc=0x1d19d3d49166] (this=0x1ee16a804381 <undefined>,path=0x25475055f4e9 <String[7]: ../lib/>)
   71: /* anonymous */ [/Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js:4] [pc=0x1d19d3d48918] (this=0x2547505ca179 <an Object with map 0x3f9ff30075e9>#35#,exports=0x2547505ca179 <an Object with map 0x3f9ff30075e9>#35#,require=0x2547505ca059 <JS Function require (SharedFunctionInfo 0x25475055fdf9)>#36#,module=0x2547505c9fc9 <a Module with map 0x24b831d1c1f9>#34#,__filename=0x2547505ca111 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>,__dirname=0x2547505ca0e9 <String[67]: /Users/__CENSORED__/node_modules/nodemon/bin>)
   72: _compile [module.js:570] [pc=0x1d19d3d483b4] (this=0x2547505c9fc9 <a Module with map 0x24b831d1c1f9>#34#,content=0x2547505ca3d1 <String[422]\: \n'use strict';\nvar cli = require('../lib/cli');\nvar nodemon = require('../lib/');\nvar options = cli.parse(process.argv);\n\nnodemon(options);\n\nvar fs = require('fs');\n\n// checks for available update and returns an instance\nvar defaults = require('lodash.defaults');\nvar pkg = JSON.parse(fs.readFileSync(__dirname + '/../package.json'));\n\nrequire('update-notifier')({\n  pkg: defaults(pkg, { version: '0.0.0' }),\n}).notify();\n>,filename=0x2547505ca111 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>)
   73: .js [module.js:579] [pc=0x1d19d3d4136b] (this=0x2547505c9f49 <an Object with map 0x24b831d1b179>#1#,module=0x2547505c9fc9 <a Module with map 0x24b831d1c1f9>#34#,filename=0x2547505ca111 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>)
   74: load [module.js:487] [pc=0x1d19d3d3fd92] (this=0x2547505c9fc9 <a Module with map 0x24b831d1c1f9>#34#,filename=0x2547505ca111 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>)
   75: tryModuleLoad(aka tryModuleLoad) [module.js:446] [pc=0x1d19d3d3f8bd] (this=0x1ee16a804381 <undefined>,module=0x2547505c9fc9 <a Module with map 0x24b831d1c1f9>#34#,filename=0x2547505ca111 <String[78]: /Users/__CENSORED__/node_modules/nodemon/bin/nodemon.js>)
   76: _load [module.js:438] [pc=0x1d19d3d342e2] (this=0x2547505c9f01 <JS Function Module (SharedFunctionInfo 0x25475052c2d1)>#3#,request=0x254750553609 <String[68]: /Users/__CENSORED__/node_modules/.bin/nodemon>,parent=0x1ee16a804201 <null>,isMain=0x1ee16a8043c1 <true>)
   77: /* anonymous */(aka /* anonymous */) [module.js:604] [pc=0x1d19d3d33daa] (this=0x1ee16a804381 <undefined>)
   78: run(aka run) [bootstrap_node.js:394] [pc=0x1d19d3d33c30] (this=0x1ee16a804381 <undefined>,entryFunction=0x254750552071 <JS Function Module.runMain (SharedFunctionInfo 0x25475052d111)>#37#)
   79: startup(aka startup) [bootstrap_node.js:149] [pc=0x1d19d3c44932] (this=0x1ee16a804381 <undefined>)
   80: /* anonymous */(aka /* anonymous */) [bootstrap_node.js:509] [pc=0x1d19d3c42759] (this=0x1ee16a804201 <null>,process=0x1ee16a8e2761 <a process with map 0x3f9ff3011a91>#38#)
=====================

node::DLOpen(v8::FunctionCallbackInfo<v8::Value> const&)
 4: 
==== C stack trace ===============================

 1: v8::Template::Set(v8::Local<v8::Name>, v8::Local<v8::Data>, v8::PropertyAttribute)
v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
 2:  5: fse::FSEvents::Initialize(v8::Local<v8::Object>)
 3: v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::(anonymous namespace)::BuiltinArguments<(v8::internal::BuiltinExtraArguments)1>)
 6: node::DLOpen(v8::FunctionCallbackInfo<v8::Value> const&)
 4: v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
 7: 0x3075ae5092a7
v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
 5: v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::(anonymous namespace)::BuiltinArguments<(v8::internal::BuiltinExtraArguments)1>)
 6: v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
 7: 0x1d19d3c092a7
[nodemon] 1.11.0
[nodemon] 1.11.0
Was this page helpful?
0 / 5 - 0 ratings