All Projects → mattvagni → cookiecutter

mattvagni / cookiecutter

Licence: other
CLI for quickly creating boilerplate files based on templates you provide.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to cookiecutter

knowledge-base-content
Open-source knowledge base covering topics about developer experience.
Stars: ✭ 73 (+143.33%)
Mutual labels:  productivity, dx
t2sp
Productive and portable performance programming across spatial architectures (FPGAs, etc.) and vector architectures (GPUs, etc.)
Stars: ✭ 24 (-20%)
Mutual labels:  productivity
3llo
3llo - Trello interactive CLI aplication
Stars: ✭ 245 (+716.67%)
Mutual labels:  productivity
stapp
A Frontend boilerplate for High productivity
Stars: ✭ 22 (-26.67%)
Mutual labels:  productivity
Dash.jl
Dash for Julia - A Julia interface to the Dash ecosystem for creating analytic web applications in Julia. No JavaScript required.
Stars: ✭ 248 (+726.67%)
Mutual labels:  productivity
awesome-engineering-management
Pointers and tools for learning and day-to-day practice of engineering management & leadership.
Stars: ✭ 1,535 (+5016.67%)
Mutual labels:  productivity
Espanso
Cross-platform Text Expander written in Rust
Stars: ✭ 3,834 (+12680%)
Mutual labels:  productivity
git-init-plus
⚡ Turbo charged git init
Stars: ✭ 15 (-50%)
Mutual labels:  productivity
Taskban
A personal productivity tool developed with C# and XAML.
Stars: ✭ 56 (+86.67%)
Mutual labels:  productivity
jiraworklogtool
A simple Chrome Extension that allows adding worklog in Jira easily.
Stars: ✭ 38 (+26.67%)
Mutual labels:  productivity
Terminal-Setup
Best Setup for your terminal for programming on macOS
Stars: ✭ 26 (-13.33%)
Mutual labels:  productivity
Sharex
ShareX is a free and open source program that lets you capture or record any area of your screen and share it with a single press of a key. It also allows uploading images, text or other types of files to many supported destinations you can choose from.
Stars: ✭ 18,143 (+60376.67%)
Mutual labels:  productivity
elodin-old
Quality and Optimisation tools for CSS in JavaScript
Stars: ✭ 15 (-50%)
Mutual labels:  dx
Todoman
✅ A simple, standards-based, cli todo (aka: task) manager.
Stars: ✭ 247 (+723.33%)
Mutual labels:  productivity
grit
Multitree-based personal task manager
Stars: ✭ 1,616 (+5286.67%)
Mutual labels:  productivity
Linux Window Session Manager
A tool to store and reload open windows and window positions for x11 desktops like unity and gnome.
Stars: ✭ 243 (+710%)
Mutual labels:  productivity
backstage-plugin-github-insights
A Backstage Plugin for Top Contributors, Languages, Releases etc.
Stars: ✭ 12 (-60%)
Mutual labels:  dx
keynavish
Control the mouse with the keyboard, on Windows.
Stars: ✭ 59 (+96.67%)
Mutual labels:  productivity
VCore
VCore is a Swift collection containing objects, functions, and extensions that I use for my projects
Stars: ✭ 32 (+6.67%)
Mutual labels:  productivity
Start-Menu-Manager
App to add websites/software/files/folders/scripts to the Windows 10 Start Menu and Taskbar, and priority shortcuts to Windows 10 Search.
Stars: ✭ 126 (+320%)
Mutual labels:  productivity

cookiecutter 🍪 ✂️

CircleCI Greenkeeper badge npm version

A CLI for creating boilerplate files/folders based on templates you provide. Like Yeoman or Python's Cookiecutter but much, much simpler.

Show me:

Example with Error

It is designed for existing projects where you want an easy way to create boilerplate files - instead of having to copy paste an existing file & then remember to make the necessary changes.

A good use-case for cookiecutter is, for example, creating a new Redux connected React component within a project. Not hard... but also not fun.

Cookiecutter supports:

  • Multiple templates with the ability to pick which template to use via the CLI.
  • Multiple fields per template with the ability to specify them from the CLI.
  • Custom validation & error messages for fields.
  • Any type of file or folder structure.

Cookiecutter doesn't support:

  • Conditionals or any other logic in templates. You can however achieve similar things by having multiple templates).
  • Bootstrapping a project from scratch (i.e I have no code but need to set a project up)
  • Adding code to existing files
  • Lots of other things Yeoman does support. If your use-case is complex, cookiecutter might not cut it.

Quick Setup

First npm install --save-dev cookiecutter. You can also install this globally if you prefer.

The add the following to your package.json (no need to do this if you are using yarn):

"scripts": {
    "cookiecutter": "cookiecutter"
}

You can now start creating your template. For example if you create a 'templates' folder in your root and add the following template:

// templates/COMPONENT_NAME.js
import React from "react";

class COMPONENT_NAME extends React.Component {
  render() {
    return <div>Hello World</div>;
  }
}

export default COMPONENT_NAME;

You can now configure Cookiecutter to replace the string COMPONENT_NAME like so by creating a file in the root of your project called cookiecutter.config.js. Cookiecutter will always look in your root for a file called cookiecutter.config.js.

// cookiecutter.config.js
module.exports = [
  {
    name: "Normal React Component",
    templatePath: "templates/COMPONENT_NAME.js",
    outputPath: "src/components/",
    fields: [
      {
        templateVariable: "COMPONENT_NAME",
        question: "What is the component's name?"
      }
    ]
  }
];

If you now run npm run cookiecutter you will be prompted to pick which template you'd like to use. After which you will be asked to answer each field's question. It should look something like this:

Example from Tutorial

That's it. Cookiecutter now created the following file:

    - src
      - components
+       - ExampleComponent.js
        - OtherComponent.js
        - Etc.js

Cookiecutter will never overwrite any existing files.

Validating fields / custom validation

To do this you can add isValid and a custom errorMessage to a fields configuration. Using the example above you could, for example, ensure component names follow a naming convention.

// in cookiecutter.config.js
module.exports = [
    {
       name: "Normal React Component",
        templatePath: "templates/COMPONENT_NAME/index.js",
        outputPath: "src/components/",
        fields: [
            {
                templateVariable: 'COMPONENT_NAME',
                question: "What is the component's name?",
+               errorMessage: 'A component must be in PascalCase and can only include letters.',
+               isValid(value) {
+                   return !!value.match(/^[A-Z][a-z]+(?:[A-Z][a-z]+)*$/g);
+               }
            }
        ]
    }
];

Select style options at the field level

Set the options key in the fields object to enable user-selectable responses to the template variables.

// in cookiecutter.config.js
module.exports = [
    {
       name: "Normal React Component",
        templatePath: "templates/COMPONENT_NAME/index.js",
        outputPath: "src/components/",
        fields: [
            {
                templateVariable: 'COMPONENT_NAME',
                question: "What is the component's name?",
+               choices: ["CoolComponent", "BigComponent", "TestComponent"],
            }
        ]
    }
];

Multiple templates

You can configure multiple templates and Cookiecutter will let you pick which template to use. The template's 'name' is what will be used in the CLI when asking which template to use.

You can specify multiple templates like so:

// in cookiecutter.config.js
module.exports = [
  {
    // Configuration for the 1st template
  },
  {
    // Configuration for the 2nd template
  }
];

Templates with folders

If you specify a folder as a template, then the folder will be created in the output directory as well. This is useful if you have a folder structure such as:

- ComponentName
    - index.js
    - styles.css

Cookiecutter will recursively copy all files within your templates folder and replace any occurrences of your specified fields.

If you don't want this behavior, specify a file as your template's templatePath.

Custom config location

If you would like your config to be somewhere else you can use the -c=path/to/your/config.js flag when you call cookiecutter.

Contributing

After cloning the repo yarn install.

You can play with the cli in the 'playground' folder. To do this, cd into it and run . run.sh. This is like running the cli once it's published and on npm but allows you to work on it locally.

To run tests run yarn test. To lint files (this will also happen in CircleCI when you open a PR): yarn lint

Roadmap/Plans

  • Offer a set of helpers for validation user input. Esp. for common 'cases' such as snake_case, PascalCase etc.
  • Allow users to specify a custom path for their config.
  • Offer the ability for people to show a message that is only shown AFTER a template is successfully rendered. This could be helpful for things such as help-text such as: 'You can import this component like so: ...'
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].