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 🙏

© 2026 – Pkg Stats / Ryan Hefner

multi-laradock

v0.0.3

Published

Help with multiple sites Laradock configuration

Downloads

10

Readme

MultiLaradock

What is it?

MultiLaradock is a Command Line Interface program born to automate Laravel development configuration in a multiproject Laradock setup.

It is NOT a general-purpose Laradock CLI. I don't have time and experience to build and mantain something like that.

When do you use it?

When you have a Laravel project and you want to serve it using existent Laradock environment without breaking things.

Use case

We have a project setup like this:

+ laradock/		# Laradock multiproject installation directory
+ project-1/	# A project served by Laradock
+ project-2/	# Another project served by Laradock
...
+ project-x/	# An existent project NOT configured by being served by Laradock

Laradock is (already!) configured to serve multiple projects on different URLs like http://project-1.test and http://project-2.test.

We want to serve project-x over http://project-x.test.

Before: had to modify NGINX configuration, modify /etc/hosts, create databases for testing and development, create database users.

Now: run multi-laradock new project-x and open http://project-x.test!

What does it do?

  1. Create nginx virtual host by copying over laravel.conf.example
  2. Edit /etc/hosts (if given permission)
  3. Create a database and a user for development
  4. Create a database and a user for testing

Installation and usage

To install you have to use a package manager for Node:

npm install -g multi-laradock

Change working directory to be in the parent folder of laradock and [project-name] like the example presented before. Run:

multi-laradock new [project_name]

Now, you're ready to go!

Options

  • new <name> : create configuration for <name>.
  • init <name> : cp .env and .env.testing, install deps and migrate:fresh onto <name>.
  • rm <name> : remove existing configuration for <name>. Pay attention: it will remove database and user too!

Why?

I develop Laravel applications using NGINX and MySQL mostly. I needed a fast and reliable way to add a new project into my existing development setup.