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 🙏

© 2025 – Pkg Stats / Ryan Hefner

generator-condo

v1.0.0-rc.5

Published

Yeoman generator for a DNX-based project with support for the Condo build system.

Downloads

49

Readme

generator-condo

A Yeoman Generator for Condo

Vitals

Info | Badges --------------|-------------- Version | Version License | License Downloads | NPM Downloads Build Status | Travis Build Status Chat | Join Chat

Getting Started

What is Condo?

Condo is a cross-platform command line interface (CLI) build system for projects using the .NET Core Framework. It is capable of automatically detecting and executing all of the steps necessary to make a DNX project function correctly, including, but not limited to:

  • Automatic semantic versioning
  • Restoring package manager dependencies (NuGet, NPM, Bower)
  • Executing default task runner commands (Grunt, Gulp)
  • Compiling projects and test projects
  • Executing unit tests
  • Packing NuGet packages
  • Pushing (Publishing) NuGet packages

These are just some of the most-used features of the build system. For more information, please refer to the official documentation.

Using Condo

  1. Make sure that you have Yeoman installed:

    npm install -g yo
  2. Install the Condo generator:

    npm install -g generator-condo
  3. Initiate the generator:

    yo condo
  4. Run the build:

    OS X / Linux:

    ./build.sh

    Windows (CLI):

    build

    Windows (PoSH):

    ./build.ps1

Options

The generator allows you to specify several options, which results in a customized experience.

Source Folder Name

The name of the folder where you intend to add one or more projects to your "solution".

Default Value: (src)

This value is used to set the projects property in the resulting global.json file.

Test Folder Name

The name of the folder where you intend to add one or more test projects to your "solution".

Default Value: (test)

This value is used to set the projects property in the resulting global.json file.

Project Name

The name of your project.

Default Value: name of the folder in which the generator was executed

This value is set in the resulting make.shade file, which is subsequently used to set the project name in assemblies built by condo. It is also used as the name of the solution and ReSharper settings files (if included).

Simple Version

Default Value: 1.0.0

This value is set in the resulting make.shade file, which is subsequently used to generate and set the semantic version in assemblies built by condo.

Company Name

Default Value: My Company

This value is set in the resulting make.shade file, which is subseqently used to generate and set the company name in assemblies built by condo. It is also used to set the name of the company in the file header template within the ReSharper settings file (if included).

Runtime

Default Value: CoreCLR

This value is used to set the sdk property in the resulting global.json file.

Inclusions

All of the inclusions identified below are enabled by default to make it as easy as possible to get started with a new project. That being said, we are fully aware that most of these inclusions are highly subjective. For the control freaks among us (ourselves included), you can inverse this situation (all includes off by default) when you execute the condo generator:

yo condo --includes false
  • Solution File: A solution file (sln) used to open the project in Visual Studio on Windows.
  • ReSharper Settings: Settings file (sln.DotSettings) used to configure ReSharper on Windows with some basic recommendations.
  • Editor Configuration: A configuration file (.editorconfig) used to configure plain-text editors that support the standard.
  • Visual Studio Code Settings: A settings file (.vscode/settings.json) used to configure Visual Studio Code.
  • Git Ignore: An ignore file (.gitignore) used to ignore artifacts created by condo in addition to many other build-time artifacts.
  • Git Attributes: An attributes file (.gitattributes) used to configure cross-platform management of file types within a git repository.
  • JSHint: A hint file (.jshintrc) used to configure JSHint and auto-completion toolsets in various editors.

CLI Options

  • --includes : A value indicating whether or not to enable includes.

Questions or Comments?

For questions or comments related to the generator, please open an issue on the condo-generator repository on GitHub.

For questions or comments related to condo itself, please open an issue on the condo repository on GitHub.

Copyright and License

©. PulseBridge, Inc. and contributors. Distributed under the APACHE 2.0 license. See LICENSE and CREDITS for details.