Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yosuke-furukawa/mkdirp.jsx

mkdirp for jsx
https://github.com/yosuke-furukawa/mkdirp.jsx

Last synced: about 1 month ago
JSON representation

mkdirp for jsx

Awesome Lists containing this project

README

        

mkdirp for JSX [![Build Status](https://travis-ci.org/yosuke-furukawa/mkdirp.jsx.png?branch=master)](https://travis-ci.org/yosuke-furukawa/mkdirp.jsx)
===============

mkdirp can make directories full path.

as a shell command,

```shell
$ mkdir -p
```

is the same meaning.

Getting Started
===============

```
$ npm install mkdirp.jsx
```

```javascript
import "mkdirp.jsx/mkdirp.jsx";

class Hoge {
function fuga() :void {
var file = "/tmp/hoge/fuga";
mkdirp.sync(file);
}
}
```