Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/yosuke-furukawa/mkdirp.jsx
- Owner: yosuke-furukawa
- Created: 2014-03-18T01:44:27.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T17:46:43.000Z (11 months ago)
- Last Synced: 2024-09-18T12:52:42.600Z (about 2 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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);
}
}
```