Code Monkey home page Code Monkey logo

Comments (5)

fent avatar fent commented on May 24, 2024 1

Fixed this in new released version 1.1.2

from feedme.js.

fent avatar fent commented on May 24, 2024

Weird, I'm trying the same file but not getting the error.

At first look, I thought it might be the comment element at the start, but it looks like the parser is avoiding that.

Hmmm, what version of sax is being installed?

from feedme.js.

rejhgadellaa avatar rejhgadellaa commented on May 24, 2024

I have this:
+-- [email protected]
| +-- [email protected]
| +-- [email protected]
| `-- [email protected]

runninf on node v6.9.5

from feedme.js.

fent avatar fent commented on May 24, 2024

Still not getting an error :/

This is the test I'm running, file2 points to a file with the contents of the above url

   fs.createReadStream(file2).pipe(new FeedMe()).on('end', done);

from feedme.js.

elafargue avatar elafargue commented on May 24, 2024

Same here - crashes on anything that is not a valid RSS feed, and apparently no way to catch the error, makes Node crash hard with no 'error' event generated..

 http.get(url, function(res) {
            var feedparser = new FeedMe();
            feedparser.on('error', function(err) {
                debug('Error:', err);
            });
            feedparser.on('item', function(item) {
                self.titles.push(item.title);
                // Start the news feed
                if (self.titles.length == 2)
                    self.displayNextTitle();
            });
            res.pipe(feedparser);
        }).on('error', function(err) {
            debug('Error getting feed', url);
            self.feedLastFetchedAt = 0; // This will force a retry next time.
            self.cleanup();
        });
}

from feedme.js.

Related Issues (18)

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.