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

es6-starter-kit

v0.0.0-development

Published

A pre-configured starter kit bundle to speed-up your development with ES6

Downloads

13

Readme

Professional ES6 Starter Kit

Latest Documentation semantic-release license Build Status

This repository provides a full development & build workflow for your next vanilla ES6 Javascript project.

The primary goal of this project is to allow a rapid kick-start of your development process by trying to avoid the tedious task of installing tons of libraries along with the following configurations. Moreover, it helps to maintain a professional workflow during development.

Note: Default assets as the src , public, and __test__ folders are to be considered as examples.

What does it include?

Install

git clone https://github.com/GabrieleRomeo/ES6-Professional-starter-kit.git
cd ES6-Professional-starter-kit

Update the project's information inside the package.json file and, if necessary, clear out the git history of the original repo.

After that, you can start fresh with semantic-release by invoking the setup task, like this:

Run yarn setup or npm run setup

You may also run dependencies installation manually with:

Run yarn or npm install

Build

By default the src/index.js file acts as a single point of access for the build system.

The build directory will contain the build.js and build.min.js files. The former will be a production version of your software that you will ship and the latter will be a development version instead.

Check out the comments inside the webpack.config.js file If you want to use your library directly into the browser.

Development Environment

Run yarn dev or npm run dev

It will open the index.html page within your favourite browser.

Documentation

JSDoc allows us to use a markdown file as the home of the API. By default, the system uses the home_manifest.md file under the __jsDoc__ directory as template.

Semantic Release

To release a new version, you'll need to create a commit with Changelog type.

To generate changelog draft run npm run changelog:preview or yarn changelog:preview .

To commit changelog run npm run changelog:commit or yarn changelog:commit.

More info here


For more information about the available features / commands, please visit the following webpage

Copyright 2017 © Gabriele Romeo


Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.