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

qnd

v0.2.0

Published

quick and dirty development builds

Downloads

75

Readme

qnd

Quick and Dirty development builds for reason

qnd provides some additional functionality while developing on the web with reason. qnd includes hot reloading, devserver, runtime error overlay and fancy console errors out of the box. qnd utilizes webpack under the hood in order to provide this functionality but imposes no knowledge of webpack.

Install

yarn add qnd -D

# OR

npm install qnd --save-dev

Usage

To get started with qnd all you need to do is create a file and pass your app entry and the project __dirname. Then it will start a server at port 8000:

// qnd.js
var qnd = require('qnd');

qnd('development', './path/to/app.re', __dirname)();

In your index.html add the following:

<script src="bundle.js"></script>

Then in your package.json add a script to your npm scripts section:

"scripts": {
  ...
  "qnd": "node qnd.js"
}

If you want to create a production bundle:

qnd('production', './path/to/app.re', __dirname)();

If not specified qnd assumes/defaults emits its output into a dist folder. qnd also assumes that your index.html file is in the dist folder. The index.html is served when hitting /, if your index.html is not in dist make sure to specify where it is.

More examples

var qnd = require('qnd');
// If you have multiple entry points pass an object
// The name of the ouput from qnd will be named after the key
qnd(
  'development', 
  {
    app: './path/to/app.re',
    app2: './path/to/app.re'
  }, 
  __dirname, 
  'ouput', // location you want to place qnd output
  '/public/index.html' // location of the index.html file being served
  )(8001, true); // change the port number to 8001 and set sourceMaps to be generated

API

The qnd function takes your application entry settings. It then returns a function which takes devserver options. More often then not you will not need to configure settings for the devserver because it has sane defaults.

qnd(build: 'development' | 'production', sources: string, dirname: string, output: string, html: string)(
  port: number, sourceMaps: boolean
)

build: whether you want to run qnd in production or development.

sources: the entry file(s) to your application source.

dirname: root direcroty name of the current application.

output[optional]: the location you want to place the output from qnd. Defaults to /dist.

html[optional]: the location of your index.html. Defaults to /dist/index.html.

port[optional]: the port you want the development server to run on. Defaults to 8000. Example value: 3000.

sourceMaps[optional]: application source maps to original code. Defaults to false.

License

MIT