generator-krew

0.4.1 • Public • Published

Krew Generator

NPM Package NPM Downloads Build Status

Yeoman generator for Krew - lets you quickly set up a worker with sensible defaults and best practices.

Usage

Install yo and generator-krew:

npm install -g yo generator-krew

Make a new directory and cd into it:

mkdir my-new-project && cd $_

Run yo krew and answer the questions:

yo krew

This command creates the following files and directories:

.
├── .editorconfig
├── .gitattributes
├── .gitignore
├── .jshintrc
├── .jshintignore
├── .jscsrc
├── .travis.yml
├── README.md
├── jsdoc.conf
├── package.json
├── app.js
├── lib
|    └── index.js
├── test
     └── index.js

.editorconfig is a base configuration of the editor. See EditorConfig.
.gitattributes and .gitignore are configuration files for git.
.jshintrc and .jshintrc are configuration files for jshint (invoked through npm code-analysis).
.jscsrc is a configuration file for jscs (invoked through npm run check-style).
.travis.yml is the configuration file for Travis CI. This file is only available when you enabled Travis CI during the setup.
jsdoc.conf is the configuration file for JSDoc (invoked through npm run make-docs).
README.md is base template for documenting the worker. Feel free to update or completely re-write the documentation.
package.json is the minimum package.json needed for the worker to work. Feel free to edit to fit your needs.
app.js is the main file of the worker. It contains a boilerplate init() method that should be adapted if additional initialization is required (like connecting to a database for instance).
lib/index.js contains the business logic. This is where the business logic of the worker should be implemented.
test/index.js contains the unit tests for this worker. It contains one method that asserts to false.

Run npm start to start the newly created worker.

The following npm are available:
start, test, test-ci, test-cov, make-docs, check-style and code-analysis.

Implementing The Worker

To give the worker its heart and soul, the index.js file under the /lib directory should be implemented.

Getting To Know Yeoman

Yeoman has a heart of gold. He's a person with feelings and opinions, but he's very easy to work with. If you think he's too opinionated, he can be easily convinced.

If you'd like to get to know Yeoman better and meet some of his friends, Grunt and Bower, check out the complete Getting Started Guide.

License

MIT

Package Sidebar

Install

npm i generator-krew

Weekly Downloads

0

Version

0.4.1

License

MIT

Last publish

Collaborators

  • kurt.pattyn