Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/watilde/chest
The easy metafile manager
https://github.com/watilde/chest
dotfiles
Last synced: 3 months ago
JSON representation
The easy metafile manager
- Host: GitHub
- URL: https://github.com/watilde/chest
- Owner: watilde
- License: mit
- Created: 2014-05-03T11:59:16.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-04-14T17:20:04.000Z (almost 8 years ago)
- Last Synced: 2024-10-20T14:26:28.066Z (4 months ago)
- Topics: dotfiles
- Language: JavaScript
- Homepage: http://chestjs.com
- Size: 726 KB
- Stars: 65
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chest
The easy metafile manager
## Badges
+ [![NPM Version](http://img.shields.io/npm/v/chest.svg)](https://www.npmjs.org/package/chest)
+ [![NPM Downloads](http://img.shields.io/npm/dm/chest.svg)](https://www.npmjs.org/package/chest)
+ [![Build Status](https://api.travis-ci.org/watilde/chest.svg)](https://travis-ci.org/watilde/chest)
+ [![Build Status](https://ci.appveyor.com/api/projects/status/github/watilde/chest?svg=true)](https://ci.appveyor.com/project/watilde/chest)
+ [![Dependency Status](https://gemnasium.com/watilde/chest.svg)](https://gemnasium.com/watilde/chest)
+ [![MIT LICENSE](http://img.shields.io/npm/l/chest.svg)](https://github.com/watilde/chest/blob/master/LICENSE)## Usage
```
Usage: chestCommands:
put [files...] Put specified config file in the chest
take [files...] Take specified config file from the chest into the project root
list Show list of config files in the chest
open Place config files from the chest into the project root as symbolic links
close Remove symbolic links created by "open"Options:
-h, --help output usage information
-V, --version output the version number
```## Examples
chest command is here to support you to take and put files to a directory called `.chest` easily. Here are some use cases.### dotfiles
Manage your dotfiles:
```
$ git clone [email protected]:your/dotfiles.git .chest$ ls
.chest$ ls .chest
.emacs.d .tmux.conf .vimrc .zshrc$ chest open
.emacs.d .chest .tmux.conf .vimrc .zshrc
```### metafiles
Manage metafiles:
```
$ ls
index.js package.json metafile_a metafile_b$ chest put metafile_a metafile_b
$ ls
.chest index.js package.json$ chest list
metafile_a metafile_b$ chest open
.chest index.js package.json metafile_a metafile_b
```## chestignore
To ignore some files, you need to add `.chestignore`.
```
README.md
.git
.gitignore
```## Install
With npm, to get the command do:
```
$ npm install -g chest
```
## License
MIT