Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hecomi/node-execsync
node.js で shell コマンドを同期的に実行するアドオンです
https://github.com/hecomi/node-execsync
Last synced: 14 days ago
JSON representation
node.js で shell コマンドを同期的に実行するアドオンです
- Host: GitHub
- URL: https://github.com/hecomi/node-execsync
- Owner: hecomi
- Created: 2012-07-08T08:56:41.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-08-17T08:46:11.000Z (over 10 years ago)
- Last Synced: 2024-08-11T08:27:54.738Z (3 months ago)
- Language: C++
- Size: 178 KB
- Stars: 7
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
node-execsync
==============はじめに
--------------
node.js の exec の同期版です。
shell のコマンドを引数で指定して実行して、その実行結果を戻り値で返してくれます。ライセンス
--------------
NYSL ライセンスです。インストール
--------------
以下のコマンドを実行して下さい。```
$ npm install execsync
```使い方
--------------
次のように使います。```javascript
var execSync = require('execsync');
console.log(execSync('ls'));
```詳細
--------------
その他詳細は Twitter:@hecomi へご質問いただくか、http://d.hatena.ne.jp/hecomi/ をご参照下さい。