Giter Site home page Giter Site logo

Comments (7)

christian-schulze avatar christian-schulze commented on May 1, 2024 2

Was having very similar issue with node 6.2.2, did the following to fix:

npm upgrade fsevents --save
npm upgrade node-sass --save

versions in package.json should be:

"fsevents": "^1.0.12",
"node-sass": "^3.8.0"

from webpack-dev-middleware.

shinzui avatar shinzui commented on May 1, 2024

Deleting your node_modules directory and reinstalling your packages should fix this.

from webpack-dev-middleware.

jvilk avatar jvilk commented on May 1, 2024

@shinzui that solution does not appear to work for me. I deleted node_modules, ran npm cache clean, and still receive the following output:

webpack-dev-server on port 8080
 10% 0/1 build modulests-loader: Using [email protected] and /Users/jvilk/Code/doppio-demo/tsconfig.json
(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: 0x3610418c9fa9 <JS Object>#0#
    1: .node [module.js:568] [pc=0x30a0f823a2c4] (this=0x12dbb0fea111 <an Object with map 0x15a418242f81>#1#,module=0x34877f3b9699 <a Module with map 0x15a4182181b9>#2#,filename=0x34877f3b9671 <String[74]: /Users/jvilk/Code/doppio-demo/node_modules/fsevents/build/Release/fse.node>)
    2: load [/Users/jvilk/Code/doppio-demo/node_modules/coffee-script/lib/coffee-script/register.js:45] [pc=0x30a0f72bc054] (this=0x34877f3b9699 <a Module with map 0x15a4182181b9>#2#,filename=0x34877f3b9671 <String[74]: /Users/jvilk/Code/doppio-demo/node_modules/fsevents/build/Release/fse.node>)
    3: tryModuleLoad(aka tryModuleLoad) [module.js:415] [pc=0x30a0f723899d] (this=0x361041804189 <undefined>,module=0x34877f3b9699 <a Module with map 0x15a4182181b9>#2#,filename=0x34877f3b9671 <String[74]: /Users/jvilk/Code/doppio-demo/node_modules/fsevents/build/Release/fse.node>)
    4: _load [module.js:407] [pc=0x30a0f72 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: 0x30a0f710961b
(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: 0x3610418c9fa9 <JS Object>#0#
    1: .node [module.js:568] [pc=0x30a0f823a2c4] (this=0x12dbb0fea111 <an Object with map 0x15a418242f81>#1#,module=0x34877f3b9699 <a Module with map 0x15a4182181b9>#2#,filename=0x34877f3b9671 <String[74]: /Users/jvilk/Code/doppio-demo/node_modules/fsevents/build/Release/fse.node>)
    2: load [/Users/jvilk/Code/doppio-demo/node_modules/coffee-script/lib/coffee-script/register.js:45] [pc=0x30a0f72bc054] (this=0x34877f3b9699 <a Module with map 0x15a4182181b9>#2#,filename=0x34877f3b9671 <String[74]: /Users/jvilk/Code/doppio-demo/node_modules/fsevents/build/Release/fse.node>)
    3: tryModuleLoad(aka tryModuleLoad) [module.js:415] [pc=0x30a0f723899d] (this=0x361041804189 <undefined>,module=0x34877f3b9699 <a Module with map 0x15a4182181b9>#2#,filename=0x34877f3b9671 <String[74]: /Users/jvilk/Code/doppio-demo/node_modules/fsevents/build/Release/fse.node>)
    4: _load [module.js:407] [pc=0x30a0f72 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: 0x30a0f710961b
Version: webpack 1.13.1
 Asset     Size  Chunks             Chunk Names
app.js  1.05 MB       0  [emitted]  main

I'm guessing something is relying on an out-of-date fsevents?

from webpack-dev-middleware.

shinzui avatar shinzui commented on May 1, 2024

@jvilk Sorry, I just tried to verify again and I am getting the same warnings. I don't remember what I did last time to remove them, but I've since reverted back to node 5 since I was having problems with another package.

from webpack-dev-middleware.

etcook avatar etcook commented on May 1, 2024

Running 6.2.2 and seeing this.

from webpack-dev-middleware.

SpaceK33z avatar SpaceK33z commented on May 1, 2024

It has something to do with your cache. This package works fine on Node v6.

from webpack-dev-middleware.

JoshLipps avatar JoshLipps commented on May 1, 2024

An old version of node-sass seems to have been causing this for me. Thanks @christian-schulze

from webpack-dev-middleware.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.