{"id":15501164,"url":"https://github.com/nfmohit/catlin","last_synced_at":"2025-04-22T23:05:07.442Z","repository":{"id":42118475,"uuid":"208703334","full_name":"nfmohit/catlin","owner":"nfmohit","description":"An interactive command line tool that helps start your next project.","archived":false,"fork":false,"pushed_at":"2023-03-04T04:44:38.000Z","size":371,"stargazers_count":4,"open_issues_count":11,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-22T23:04:52.247Z","etag":null,"topics":["boilerplate","cli","cli-app","javascript","nodejs","template"],"latest_commit_sha":null,"homepage":"https://nahid.dev/project/catlin/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nfmohit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null},"funding":{"patreon":"nfmohit"}},"created_at":"2019-09-16T03:38:04.000Z","updated_at":"2022-10-03T05:34:14.000Z","dependencies_parsed_at":"2023-07-25T21:03:28.394Z","dependency_job_id":null,"html_url":"https://github.com/nfmohit/catlin","commit_stats":null,"previous_names":["nfmohit-wpmudev/catlin"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nfmohit%2Fcatlin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nfmohit%2Fcatlin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nfmohit%2Fcatlin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nfmohit%2Fcatlin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nfmohit","download_url":"https://codeload.github.com/nfmohit/catlin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250337945,"owners_count":21414104,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["boilerplate","cli","cli-app","javascript","nodejs","template"],"created_at":"2024-10-02T09:02:42.178Z","updated_at":"2025-04-22T23:05:07.398Z","avatar_url":"https://github.com/nfmohit.png","language":"JavaScript","funding_links":["https://patreon.com/nfmohit","https://www.patreon.com/nfmohit)!"],"categories":[],"sub_categories":[],"readme":"﻿[![Node.js version](https://img.shields.io/node/v/catlin?style=for-the-badge)](https://nodejs.org) [![catlin](https://img.shields.io/npm/v/catlin?style=for-the-badge)](https://www.npmjs.com/package/catlin/)\n\n### Description\n\nI built Catlin to overcome the necessity of copying a boilerplate and change starter details on it every time me or my team started a new project. This simple and interactive cli-tool packs useful boilerplates which are output with dynamic values specific to each project.\n\n### Use Cases\n\nCatlin is used by my myself and my team (of course, you are welcome to use it as well, it is open-source) when a new project is started. It asks a couple of questions during initiation generating dynamic values that are put in the output project files. As a result, you do not have to go inside the files and set unique details for each project.\n\n### Core Features\n\n-   Serves the purpose of a boilerplate implementation tool.\n-   Fills in the unique project details itself automatically based on the answer of the questions during the initiation period.\n-   Initialises Git and makes the first commit.\n\n### Requirements\n\nCatlin requires [NodeJS](https://nodejs.org/en/download/) version 8.3.0 (minimum) but using the LTS version is always appreciated.\n\n### Installation\n\nIn order to install, please run the following command in your command line:\n\n`npm install -g catlin`\n\nFor global installation, you'll need to have administrator privileges. You can use `sudo` for that purpose, e.g. `sudo npm install -g catlin`.\n\n### Usage\n\nCatlin only provides one command for now:\n\n`catlin`\n\nOnce you run this command on a folder, it will ask for some details based on which, it will prepare your next project to get started immediately without having to spend hours and configure everything manually.\n\n**Note:** You need to have an _empty_ Git repository with push permissions in order to be able to initialise Git successfully. At this moment, the program throws an error if this is not done before starting (everything except the Git initialisation gets done, though). This behaviour is going to change in the upcoming release. The current version works well for my team's workflow.\n\n### Boilerplates\n\nCatlin currently packs boilerplates for the following type of projects:\n\n1. Static HTML (with Webpack + SASS + Bootstrap + FontAwesome built-in).\n\n#### Coming soon:\n\n1. WordPress theme development boilerplate.\n2. WordPress plugin development boilerplate.\n3. ReactJS boilerplate.\n\n### Background\n\nPreviously, when starting a new project, me and my team had to copy a boilerplate code, change the details (e.g. project name, description, author, GitHub repository) and initialise the Git repository, all manually. This used to take a long amount of time and effort. Thus came the necessity of a tool like Catlin, which would do all these for us automatically.\n\n### Credits\n\nCatlin uses:\n\n1.  [Inquirer](https://www.npmjs.com/package/inquirer) to ask interactive questions.\n2.  [EJS](https://www.npmjs.com/package/ejs) to input dynamic values inside the project templates.\n3.  [Simple Git](https://www.npmjs.com/package/simple-git) for Git support.\n4.  [Babel](https://babeljs.io/) for transforming ES6 into machine readable code.\n5.  [ASCII-art Logo](https://www.npmjs.com/package/asciiart-logo) for the app splash screen.\n\nThis project is heavily inspired by [this post from Harriet Ryder](https://medium.com/northcoders/creating-a-project-generator-with-node-29e13b3cd309).\n\n### Sponsor\n\nYou can sponsor this project and support my open-source development by [becoming a Patron](https://www.patreon.com/nfmohit)!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnfmohit%2Fcatlin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnfmohit%2Fcatlin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnfmohit%2Fcatlin/lists"}