npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

webpack-php-proxy-server

v1.0.1

Published

Extends Webpack Dev Server to use PHP as a middleware, proxying /api requests to a PHP server

Downloads

91

Readme

Webpack DevServer with PHP

Overview

This project sets up a development server using Webpack and PHP. It ensures that the PHP server runs concurrently with the Webpack development server, allowing you to develop and test PHP applications seamlessly.

Table of Contents

Installation

  1. Clone the repository:

    git clone [email protected]:amenophis1er/webpack-php-proxy-server.git
    cd webpack-php-proxy-server
  2. Install dependencies:

    npm install

Usage

To set up the development server, you need to modify your Webpack configuration to include the setupDevServer function.

Webpack Configuration

  1. Create or modify your Webpack configuration file:

    // webpack.config.js
    const { setupDevServer } = require('webpack-php-proxy-server');
    
    module.exports = async function (env, argv) {
      const phpServerDir = 'examples'; // Change to your PHP server directory
      const apiPrefix = 'api'; // Change to your desired API prefix
    
      const config = {
        // Your existing Webpack configuration
      };
    
      await setupDevServer(config, {
        port: 8080, // Optional, specify a port for Webpack dev server
        phpServerDir,
        apiPrefix,
      });
    
      return config;
    };
  2. Run the development server:

    npm start

    This will start both the Webpack development server and the PHP server.

Testing

This project includes tests for the server setup functions using Jest. To run the tests, follow these steps:

  1. Install testing dependencies:

    npm install --save-dev jest
  2. Run the tests:

    npm test

Example Tests

The following test cases are included:

  • Testing the getAvailablePort function:

    const { getAvailablePort } = require('webpack-php-proxy-server');
    
    test('finds an available port', async () => {
      const port = await getAvailablePort(8000, 8005);
      expect(port).toBeGreaterThanOrEqual(8000);
      expect(port).toBeLessThanOrEqual(8005);
    });

Configuration

The main configuration options for setupDevServer are:

  • port: (Optional) Port number for the Webpack development server. If not provided, an available port will be used.
  • phpServerDir: Directory to serve PHP files from.
  • apiPrefix: (Optional) Prefix for API routes. Defaults to api.

License

This project is licensed under the MIT License. See the LICENSE file for details.