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

read-art

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

read-art - npm Package Compare versions

Comparing version 0.1.7 to 0.1.8

8

index.js

@@ -64,7 +64,7 @@ // Copyright 2014 Tjatse

req(options, function(err, resp) {
if (err) {
return callback(err);
if (err || !resp) {
return callback(err || new Error('Response is empty.'));
}
if(resp.statusCode != 200){
return callback(new Error('STATUS: ' + resp.statusCode));
if(!resp.body){
return callback(new Error('No body was found.'));
}

@@ -71,0 +71,0 @@

{
"name": "read-art",
"version": "0.1.7",
"version": "0.1.8",
"description": "Scrape article from any page, automatically, make web page readability.",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc