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

kantan

v0.0.42

Published

A simple, no-fuss development setup.

Downloads

59

Readme

Kantan

A tiny, no-fuss development setup intended for small projects and experiements. It's purpose is to help ease the beginnings of a project by giving you a little develop setup to get things up and running as fast as possible without needing to fuss around with remembering all of the common npm packages you might need to work with ES6.

Once you're done, you can even build with the tool as well.

Requirements

  • at least node 6.9.1

Installation

Two ways Method one

  • clone into node_modules
  • node node_modules/kantan/bin/cli.js

Method two

  • npm install -g kantan
  • run like any other command line script

Note that if you use method 2 and a custom webpack config - you may have to install additional packages for your project.

Use

Kantan is primarily intended for use as a development server, but can also be used to build packages(note - building bundles is still under re-write).

Each form has some available options. You reference all options on the command line or you can specify a json or js file to write your config in and pass in a path to that file with the flag --configFile

CLI Flags

  • --build add this flag if you want to build files instead of running the dev server
  • --port specifies the port to run the server on
  • --entry specifies the path to the main entry file for your app/site
  • --public specifies the directory that contains your html
  • --customWebpack Specifies the path to your own webpack.config.js file. Will use a default file if one is not specified.
  • --buildConfig Specifies the path to a custom build configuration. The build configuration should be a json file. The options you can specify are the same as the options for Google's closure compiler which is what is used to minify your Javascript.
  • --buildCSS By default - css isn't being built to help reduce memory and processing constraints. Add this flag to include the css loader in the compiled webpack config. You can then include css like you normally would with style-loader/css-loader by going include css from '<path to your css file>

Building

Previously, there was the option to build a bundle in a common js compatible format. Now that ES6 is starting to be directly integrated into browsers, it's assumed that ES6 is what you're going to be building with and common js support is removed.

There are some sensible defaults set up now but if need be you can pass in a custom json file specifying build options. See --buildConfig flag above.

CSS Parsing

This dev setup is primarily meant to JS based projects, but CSS parsing is included as well. This is utilizing PostCSS as a pre-processing step as it has a large variety of plugins to change your css however you'd like. By default, it'll compile scss syntax using PreCss. From previous testing, there isn't a difference that I can find yet, but keep in mind that this isn't using the normal Sass rubygem.

Note that this no longer uses chokidar and is all tied into Webpack.