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 🙏

© 2026 – Pkg Stats / Ryan Hefner

angularjs-boilerplate-dsr

v1.0.2

Published

AngularJS boilerplate by DSR Corporation

Readme

AngularJS boilerplate by DSR Corporation

Table of contents

Prerequisites

  • NPM
  • YARN

Install

yarn

Run

Serves your app with WebPack Dev Server in development mode

yarn start

Build your app for production

yarn build

Architecture

The app is represented with six groups of files:

  • components
  • containers
  • constants
  • dialogs
  • services
  • routes
  • styles
  • core (located in the root)

Components and containers

Components and containers define your view layer. As components are concerned more with how things look, containers are bothered with how they work. There's a great article by Dan Abramov on this topic.

LESS

As there is no major reasons to choose LESS over SASS or otherwise it's been decided to go with LESS. It's recommended to use BEM-like naming for your styles.

LESS styles are spread across the files:

  • angular-loader-override
    • Set of styles to override the color scheme of angular-loader.
  • base
    • Set of general styles applied to the basic elements of your whole app.
  • buttons
    • Set of styles for your buttons.
  • constants
    • Set of LESS constants to keep your styles consistent. Usually there are a limited amount of colors, animation durations and margins/padding (corresponding to your base grid) in your app. It's recommended to keep these values here.
  • fonts
    • Set of font-face styles to load custom fonts.
  • icons
    • Set of icon-specific styles.
  • inputs
    • Set of styles for your inputs and forms.
  • modificators
    • Set of common styles could be applied across your whole app. It includes sets of styles for usual margins/paddings, font and background colors, heights and widths corresponding your grid and etc.

These are app wide styles which create your general CSS framework.

Features

  • JWT support
    • security
      • service providing sign-in, sign-out, check sign-in and other security jwt-related API.
    • security-interceptor
      • http interceptor adding jwt token to every request and saving it with every response (Authorization Bearer header is used).
  • Set of basic components
    • checkbox
    • dropdown (select)
    • error
    • radio-button
    • svg-icon
  • Set of tools to develop responsive UI
  • Decorator for $recource: adds server URL prefix, adds update method and adds $promiseHandled() method for automatic error handling
  • Detect a browser back button click
    • Detects if a user clicks a browser back button providing a possibility to apply custom handler for this occasion in index.run.js.
  • Autoscroll to the top
    • Overrides Angular's default preserve scroll position between states feature and scrolls a user's screen to the top on each state change.
  • Detect if a user scrolls all the way to the bottom
    • Broadcasts 'ui.scrollbarIsOnBottom' if a scrollbar is on the bottom of the screen
  • A script to upgrade all dependencies
    • Run 'yarn upgrade-dependencies'
  • A linting script
    • Run 'yarn lint'

ES6 support

We run babel with env preset, object spread and class properties support under the hood.

Code Validation

StandardJS is hooked up to validate the code. We srongly discourage using ESLint with custom presets as it leads to inconsistent code style across your projects.

Defaults

  • Logging
    • Debug mode is enabled in config
  • URLs
    • HTML5 mode is enabled in config
  • Dialogs
    • Constant with dialog close codes added to index.constants.js
    'dialogButtons', {
        CANCEL: 0,
        OK: 1,
        YES: 2,
        NO: 3
      }
  • Handling state change errors
    • errorHelpers.handleBackendError is invoked if any error caught, redirect to your home page happens otherwise
  • Different constants for production, development and testing
    • By default development and production constants are provided with 'apiRoot' injected
  • Code validation
    • Build automatically fails if any errors found
  • Version
    • Current web app version is injected in widow as appVersion

Release scripts

These scripts automate version increment flow via a separate version-inc branch, helping you bring your latest changes to the master and put a tag on it.

Prerequisites:

  • You have local develop and master branches
  • You have develop and master branhces in your origin
  • Current branch is develop with the latest changes merged in

Scripts are provided by default:

  • version-patch
  • version-minor
  • version-major

Run a script with (it's better to run them from Git Bash to avoid entering a password to your ssh key for every command)

npm run version-patch
npm run version-minor
npm run version-major

For Unix-based systems add "-b" (for Bash) postfix:

npm run version-patch-b
npm run version-minor-b
npm run version-major-b

Each of these scripts follows the following flow:

  • Creates a branch named 'version-inc' and checks it out
  • Increments version in package.json and bower.json
  • Pushes updated files to origin
  • Merges develop with version-inc branch
  • Deletes version-inc branch
  • Merges master with develop
  • Adds tag 'x.x.x' to master

License

The MIT License (MIT)

Copyright (c) 2016 DSR Corporation

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.