معرفی شرکت ها


bin-wrapper-4.1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Binary wrapper that makes your programs seamlessly available as local dependencies
ویژگی مقدار
سیستم عامل -
نام فایل bin-wrapper-4.1.0
نام bin-wrapper
نسخه کتابخانه 4.1.0
نگهدارنده ['shinnn', 'kevva']
ایمیل نگهدارنده ['snnskwtnb@gmail.com', 'kevinmartensson@gmail.com']
نویسنده Kevin Mårtensson
ایمیل نویسنده kevinmartensson@gmail.com
آدرس صفحه اصلی git+https://github.com/kevva/bin-wrapper.git
آدرس اینترنتی https://github.com/kevva/bin-wrapper#readme
مجوز MIT
# bin-wrapper [![Build Status](https://travis-ci.org/kevva/bin-wrapper.svg?branch=master)](https://travis-ci.org/kevva/bin-wrapper) > Binary wrapper that makes your programs seamlessly available as local dependencies ## Install ``` $ npm install bin-wrapper ``` ## Usage ```js const BinWrapper = require('bin-wrapper'); const base = 'https://github.com/imagemin/gifsicle-bin/raw/master/vendor'; const bin = new BinWrapper() .src(`${base}/macos/gifsicle`, 'darwin') .src(`${base}/linux/x64/gifsicle`, 'linux', 'x64') .src(`${base}/win/x64/gifsicle.exe`, 'win32', 'x64') .dest(path.join('vendor')) .use(process.platform === 'win32' ? 'gifsicle.exe' : 'gifsicle') .version('>=1.71'); (async () => { await bin.run(['--version']); console.log('gifsicle is working'); })(); ``` Get the path to your binary with `bin.path()`: ```js console.log(bin.path()); //=> 'path/to/vendor/gifsicle' ``` ## API ### `new BinWrapper(options)` Creates a new `BinWrapper` instance. #### options Type: `Object` ##### skipCheck Type: `boolean`<br> Default: `false` Whether to skip the binary check or not. ##### strip Type: `number`<br> Default: `1` Strip a number of leading paths from file names on extraction. ### .src(url, [os], [arch]) Adds a source to download. #### url Type: `string` Accepts a URL pointing to a file to download. #### os Type: `string` Tie the source to a specific OS. #### arch Type: `string` Tie the source to a specific arch. ### .dest(destination) #### destination Type: `string` Accepts a path which the files will be downloaded to. ### .use(binary) #### binary Type: `string` Define which file to use as the binary. ### .path() Returns the full path to your binary. ### .version(range) #### range Type: `string` Define a [semver range](https://github.com/isaacs/node-semver#ranges) to check the binary against. ### .run([arguments]) Runs the search for the binary. If no binary is found it will download the file using the URL provided in `.src()`. #### arguments Type: `Array`<br> Default: `['--version']` Command to run the binary with. If it exits with code `0` it means that the binary is working. ## License MIT © [Kevin Mårtensson](http://kevinmartensson.com)


نیازمندی

مقدار نام
^4.1.0 bin-check
^4.0.0 bin-version-check
^7.1.0 download
^3.1.0 import-lazy
^2.0.0 os-filter-obj
^4.0.1 pify


زبان مورد نیاز

مقدار نام
8.12.0 Npm


نحوه نصب


نصب پکیج tgz bin-wrapper-4.1.0:

    npm install bin-wrapper-4.1.0.tgz