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

imnaver

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

imnaver - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

12

lib/naver.js

@@ -13,5 +13,5 @@ /**

var NaverSearch = function( options ) {
var NaverSearch = function() {
if( !(this instanceof NaverSearch) ) return new NaverSearch( options );
if( !(this instanceof NaverSearch) ) return new NaverSearch();

@@ -31,4 +31,3 @@ //Endpoint NaverSearch API REST GET

//merge options passed in with defaults
this.options = _.extend(defaults, options);
this.options = defaults;
}

@@ -50,3 +49,2 @@

'query=' + qs.escape(query) + '&' + qs.stringify(opts);
//console.log('URI:::: '+uri);

@@ -60,4 +58,4 @@

'Content-Type': 'application/xml',
'X-Naver-Client-Id': 'WTnJxLWRRVSiVAy1fo9S',
'X-Naver-Client-Secret': 'EHKD7lcsbj'
'X-Naver-Client-Id': options.id,
'X-Naver-Client-Secret': options.secret
},

@@ -64,0 +62,0 @@ timeout: this.timeout

{
"name": "imnaver",
"version": "0.2.0",
"version": "0.2.1",
"description": "A node library for Naver Open API",

@@ -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