Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

asc

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asc - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

4

package.json
{
"name": "asc",
"description": "A middleware layer between a service and a client. The service could be an in-process library, a file, an external web service, anything. Any time the results from a resource call can be cached, you can use ASC as a proxy to that resource.",
"version": "0.1.1",
"version": "0.1.2",
"author": "Anthony Hildoer <anthony@bluerival.com>",

@@ -14,3 +14,3 @@ "repository": {

"devDependencies": {
"mocha": "~1.8.0"
"mocha": "~1"
},

@@ -17,0 +17,0 @@ "keywords": [

@@ -136,3 +136,4 @@ ASC (pronounced "ASK")

request( {
url: "http://profile-server.mydomain.com/users/" + usernames.join( ',' );
url: "http://profile-server.mydomain.com/users/" +
usernames.join( ',' );
},

@@ -183,5 +184,6 @@ function( err, result ) {

// and typically this will reduce the servicing time.
profileCache.getBatch( [ 'anthony', 'jackson', 'lilly', 'landon' ], function ( values ) {
console.log( values );
} );
profileCache.getBatch( [ 'anthony', 'jackson', 'lilly', 'landon' ],
function ( values ) {
console.log( values );
} );

@@ -188,0 +190,0 @@ // this will not trigger a call to update, instead it will get data when the

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