Skip to content
/ init.js Public

:octocat: A simple command line utility to quickly initialize developer workspaces / repositories

License

Notifications You must be signed in to change notification settings

frdmn/init.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

990e33b · Jul 15, 2018

History

81 Commits
Jun 17, 2015
Jul 15, 2018
May 21, 2015
May 25, 2015
May 25, 2015
May 25, 2015
Jul 15, 2018
May 25, 2015
Jul 15, 2018
Jul 15, 2018
Jul 15, 2018
Jul 15, 2018

Repository files navigation

init.js

Current tag Repository issues

A simple NodeJS based command line utility to quickly initialize a developer workspace / git repository including README templates and license files.

Installation

  1. Make sure you've installed all requirements

  2. Install the project globally using npm:

    npm install -g init.js

Usage

  • Create a new folder for your new project:

    mkdir test-project
  • Change into that directory:

    cd test-project
  • Run init.js:

    init

You can optionally pass the following arguments:

Usage: init [options]

Options:
  -h, --help        Show help and usage information
  -v, --version     Display version information                                                 [default: false]
  -i, --ignore-git  Ignore existing .git folder in the current directory, can be true or false  [default: false]

Custom templates

Since version 1.2.0 you are able to add custom readme and license templates without sending a pull request on GitHub nor adding them in the node_modules/ folder.

Just create a directory called .initjs in your home folder and drop your template readmes into ~/.initjs/readmes/ and licenses (obviously) into ~/.initjs/licenses/.

Automatically replace GitHub username

If you have the github.user git configuration set - it will replace your GitHub user automatically. You can set it usig the following command:

git config --global github.user YourUsername

Contributing

  1. Fork it

  2. Create your feature branch:

    git checkout -b feature/my-new-feature
  3. Commit your changes:

    git commit -am 'Add some feature'
  4. Push to the branch:

    git push origin feature/my-new-feature
  5. Submit a pull request

Requirements / Dependencies

  • NodeJS
  • Existing .gitconfig

Version

1.3.0

License

MIT