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

@eklingen/vinyl-stream-connect

v3.0.5

Published

Small vinyl-stream wrapper -aka Gulp plugin- for connect.

Downloads

122

Readme

Small vinyl-stream wrapper -aka Gulp plugin- for connect.

Run Connect from within your streams. Use via src('folder/', { read: false }). Don't use a glob!

  • Supports serving multiple static paths as root. Gets the paths from the Vinyl stream. Remember to use { read: false } and don't use a glob.

  • Supports LiveReload functionality. The optional dependencies are lazy-loaded if LiveReload is set.

  • Doesn't support running multiple servers simultaneously.

  • Doesn't support a fallback index.html.

  • Doesn't support HTTPS/HTTP2. This is meant for local development. Use a reverse SSH tunnel for that.

NOTE: No tests have been written yet!

Installation

yarn install. Or npm install. Or just copy the files to your own project.

Usage

const connectWrapper = require('@eklingen/vinyl-stream-connect')
stream.pipe(connectWrapper())

Options

There are a few options:

host

The hostname. Default is '127.0.0.1'. Try using '0.0.0.0' if you can't reach it from other devices within the network.

connectWrapper({
  host: '127.0.0.1'
})

port

The port number. Default is 8000.

connectWrapper({
  port: 8000
})

index

The index file. Default is index.html. This option gets passed through to serve-static. For more options, see below.

connectWrapper({
  index: 'index.html'
})

liveReload

Turn live reload functionality on or off. Default is false.

connectWrapper({
  liveReload: false
})

NOTE When true, extra dependencies are needed. If you installed the package without optional dependencies, then install connect-livereload, tiny-lr and chokidar manually.

log

You can precisely control the console output on the specific events. The defaults are in the example below.

connectWrapper({
  log: {
    connection: false,
    request: false,
    error: true,
    start: true,
    stop: true,
    livereload: false
  }
})

For brevity, there are a few preset combinations you can use:

const LOG = {
  default: { connection: false, request: false, error: true, start: true, stop: true, livereload: false },
  verbose: { connection: true, request: true, error: true, start: true, stop: true, livereload: true },
  quiet: { connection: false, request: false, error: true, start: false, stop: false, livereload: false }
}

Set these as a string.

connectWrapper({
  log: 'quiet'
})

middleware

Any option you set in the middleware object will be passed through verbatim, except serveStatic.index since options.index has priority. For more details on the available options, see "serve-static" and "connect-livereload". The defaults that are set within this package are shown in the example below.

connectWrapper({
  middleware: {
    serveStatic: {
      dotfiles: 'ignore',
      index: <options.index>
    },

    connectLivereload: {
      port: 35729
    }
  }
})

Dependencies

This package requires "connect" and "serve-static".

Optional dependencies

When using the live reload functionality, this package also requires "chokidar", "connect-livereload" and "tiny-lr".


Copyright (c) 2019 Elco Klingen. MIT License.