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

appserver

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appserver - npm Package Compare versions

Comparing version 0.4.0 to 0.5.0

2

lib/middleware/appsload.js

@@ -160,3 +160,3 @@ function create(options) {

if (path.existsSync(filename) && fs.statSync(filename).isFile()) {
if (fs.existsSync(filename) && fs.statSync(filename).isFile()) {
break;

@@ -163,0 +163,0 @@ }

@@ -45,3 +45,3 @@ 'use strict';

.filter(function (filename) {
return (path.existsSync(filename) && fs.statSync(filename).isFile());
return (fs.existsSync(filename) && fs.statSync(filename).isFile());
})[0];

@@ -48,0 +48,0 @@ if (!filename) {

{
"name": "appserver",
"version": "0.4.0",
"version": "0.5.0",
"description": "A connect based middleware to support local development against a remote backend.",

@@ -5,0 +5,0 @@ "main": "./lib/appserver",

@@ -7,3 +7,3 @@ # appserver

This module can operate in two different modi. First as a stand-alone application that
This module can operate in two different modes. First as a stand-alone application that
is able to serve files from some configured directories. Second mode is via a node module

@@ -10,0 +10,0 @@ that can be loaded into some existing node project.

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