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

rollup-plugin-serve

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-plugin-serve - npm Package Compare versions

Comparing version

to
0.3.0

40

dist/index.cjs.js

@@ -14,6 +14,8 @@ 'use strict';

options.contentBase = options.contentBase || '';
if (Array.isArray(options) || typeof options === 'string') {
options = { contentBase: options };
}
options.contentBase = Array.isArray(options.contentBase) ? options.contentBase : [options.contentBase];
options.host = options.host || 'localhost';
options.port = options.port || 10001;
var url = 'http://' + options.host + ':' + options.port;

@@ -25,10 +27,4 @@ mime.default_type = 'text/plain';

var urlPath = request.url.split('?')[0];
var filePath = path.resolve(options.contentBase, '.' + urlPath);
// Load index.html in directories
if (urlPath.endsWith('/')) {
filePath = path.resolve(filePath, 'index.html');
}
fs.readFile(filePath, function (error, content) {
readFileFromContentBase(options.contentBase, urlPath, function (error, content, filePath) {
if (!error) {

@@ -76,4 +72,9 @@ return found(response, filePath, content)

running = true;
console.log(green(url) + ' -> ' + path.resolve(options.contentBase));
// Log which url to visit
var url = 'http://' + options.host + ':' + options.port;
options.contentBase.forEach(function (base) {
console.log(green(url) + ' -> ' + path.resolve(base));
});
// Open browser

@@ -88,2 +89,21 @@ if (options.open) {

function readFileFromContentBase (contentBase, urlPath, callback) {
var filePath = path.resolve(contentBase[0] || '.', '.' + urlPath);
// Load index.html in directories
if (urlPath.endsWith('/')) {
filePath = path.resolve(filePath, 'index.html');
}
fs.readFile(filePath, function (error, content) {
if (error && contentBase.length > 1) {
// Try to read from next contentBase
readFileFromContentBase(contentBase.slice(1), urlPath, callback);
} else {
// We know enough
callback(error, content, filePath);
}
});
}
function notFound (response, filePath) {

@@ -90,0 +110,0 @@ response.writeHead(404);

@@ -10,6 +10,8 @@ import { readFile } from 'fs';

options.contentBase = options.contentBase || '';
if (Array.isArray(options) || typeof options === 'string') {
options = { contentBase: options };
}
options.contentBase = Array.isArray(options.contentBase) ? options.contentBase : [options.contentBase];
options.host = options.host || 'localhost';
options.port = options.port || 10001;
var url = 'http://' + options.host + ':' + options.port;

@@ -21,10 +23,4 @@ mime.default_type = 'text/plain';

var urlPath = request.url.split('?')[0];
var filePath = resolve(options.contentBase, '.' + urlPath);
// Load index.html in directories
if (urlPath.endsWith('/')) {
filePath = resolve(filePath, 'index.html');
}
readFile(filePath, function (error, content) {
readFileFromContentBase(options.contentBase, urlPath, function (error, content, filePath) {
if (!error) {

@@ -72,4 +68,9 @@ return found(response, filePath, content)

running = true;
console.log(green(url) + ' -> ' + resolve(options.contentBase));
// Log which url to visit
var url = 'http://' + options.host + ':' + options.port;
options.contentBase.forEach(function (base) {
console.log(green(url) + ' -> ' + resolve(base));
});
// Open browser

@@ -84,2 +85,21 @@ if (options.open) {

function readFileFromContentBase (contentBase, urlPath, callback) {
var filePath = resolve(contentBase[0] || '.', '.' + urlPath);
// Load index.html in directories
if (urlPath.endsWith('/')) {
filePath = resolve(filePath, 'index.html');
}
readFile(filePath, function (error, content) {
if (error && contentBase.length > 1) {
// Try to read from next contentBase
readFileFromContentBase(contentBase.slice(1), urlPath, callback);
} else {
// We know enough
callback(error, content, filePath);
}
});
}
function notFound (response, filePath) {

@@ -86,0 +106,0 @@ response.writeHead(404);

{
"name": "rollup-plugin-serve",
"version": "0.2.0",
"version": "0.3.0",
"description": "Serve your rolled up bundle",

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

@@ -55,2 +55,5 @@ # Rollup plugin to serve the bundle

// Multiple folders to serve from
contentBase: ['dist', 'static'],
// Set to true to return index.html instead of 404

@@ -57,0 +60,0 @@ historyApiFallback: false,