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

@webextensions/live-css

v8.0.3

Published

live-css is a Node JS based development server for use with the browser extension "Live editor for CSS, Less & Sass - Magic CSS" for Chrome/Edge/Firefox/Opera

Downloads

63

Readme

live-css server

live-css is a Node JS based development server for use with the browser extension Live editor for CSS, Less & Sass - Magic CSS.

  https://chrome.google.com/webstore/detail/ifhikkcafabcgolfjegfcgloomalapol

For availability of the latest version of Magic CSS extension on Microsoft Edge, Mozilla Firefox and Opera, follow:

https://github.com/webextensions/live-css-editor

Installation and Usage

There are two ways to install live-css server: globally and locally.

Global installation and usage

$ npm install --global @webextensions/live-css
$ live-css

Local installation and usage (for Node JS based projects)

$ npm install --save-dev @webextensions/live-css
var express = require('express');
var app = express();
var httpServer = app.listen(3000, function () {
    console.log('Server started');
});

if (codeIsRunningInDevelopmentMode) {
    var liveCssServer = require('@webextensions/live-css');

    // Start live-css server
    liveCssServer({
        // Optional - If provided, the live-css server will reuse your current HTTP server port.
        //            Otherwise, live-css server would run on a separate port.
        httpServer: httpServer,

        // Optional - If provided, routes for '/live-css/' requests would be setup appropriately
        expressApp: app,

        // Optional - Use it along with "expressApp" if the "live-css" server runs on a different port
        runningOnSeparatePort: false,

        // Optional - Useful for providing some common configuration options.
        //            This example assumes that the path of the config file is same as that of
        //            server code file initiating live-css server
        configFilePath: require('path').resolve(__dirname, '.live-css.config.js')
    });
}

How to use

  • Install the Magic CSS browser extension from the link mentioned above
  • Open the web page you are developing
  • Click on the Magic CSS icon to launch the floating CSS editor
  • In top bar of the floating CSS editor, under the reload icon, click on the option "Watch CSS files to apply changes automatically"
  • A dialog would open, which would guide you how to connect this live-css server with the Magic CSS extension
  • Once the connection is setup, you can edit and save the CSS files in your favorite code editor and they would automatically get reloaded in the web page

Command line options

  • To get the full list of options:
           $ live-css --help
  • To generate the configuration file:
           $ live-css --init
  • To run live-css server on a custom port:
           $ live-css --port <custom-port-number>
  • To list the files being watched:
           $ live-css --list-files
  • To allow symlinks:
           $ live-css --allow-symlinks
  • To specify the HTTP server's root folder:
           $ live-css --root <http-server-root-folder>

Configuration file

The configuration file can be generated using $ live-css --init

Note: Configuration options are described in the configuration file

TODO

  • Ability to auto-connect live-css server without launching the browser extension
  • Ability to integrate webpage front-end and live-css server without the browser extension

Author

Connect to us