# noksha

> a simple dependency manager

Latest version **0.0.3** (published 2012-08-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install noksha
pnpm add noksha
yarn add noksha
bun add noksha
```

Provides the command `noksha`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2012-08-27 |
| First published | 2012-08-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Known vulnerabilities | 0 (+7 in 2 direct dependencies) |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Rifat Nabi |
| Maintainers | rifat |
| Keywords | noksha, blueprint, dependency |

## Links

- npm: https://www.npmjs.com/package/noksha
- Repository: https://github.com/torifat/noksha
- npm.io page: https://npm.io/package/noksha

## Dependencies (4)

- [colors](https://npm.io/package/colors.md) *
- [js-yaml](https://npm.io/package/js-yaml.md) 1.0.x
- [shelljs](https://npm.io/package/shelljs.md) 0.0.x
- [progress](https://npm.io/package/progress.md) 0.0.x

## Recent versions

- 0.0.3 (latest) — 2012-08-27
- 0.0.2 — 2012-08-15
- 0.0.1 — 2012-08-14

## README

noksha
======

a very simple dependency manager

Minimal `git` support added to this version but more features will be coming soon.

##Installation

Installing via `npm`

```bash
$ npm install -g noksha
```

##Usage

Create a file called `blueprint.yml`, preferably in your project root. And then define your own blueprint like the sample one. 

**Sample `blueprint.yml` for a Backbone project**


```yml
jquery:
    web:    http://code.jquery.com/jquery.js
    target: js/libs/jquery.js

requirejs:
    web:    http://requirejs.org/docs/release/2.0.5/minified/require.js
    target: js/libs/require.js

underscore:
    web:    http://underscorejs.org/underscore.js
    target: js/libs/underscore.js

backbone:
    web:    http://backbonejs.org/backbone.js
    target: js/libs/backbone.js

handlebars:
    web:    http://cloud.github.com/downloads/wycats/handlebars.js/handlebars-1.0.0.beta.6.js
    target: js/libs/handlebars.js
```

after running command `noksha` at root directory it generates the following -

	.
	├── blueprint.yml
	└── js
	    └── libs
	        ├── backbone.js
	        ├── handlebars.js
	        ├── jquery.js
	        ├── require.js
	        └── underscore.js
	
	2 directories, 6 files

---
_Source: https://npm.io/package/noksha · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
