معرفی شرکت ها


derequire-2.1.1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

remove requires
ویژگی مقدار
سیستم عامل -
نام فایل derequire-2.1.1
نام derequire
نسخه کتابخانه 2.1.1
نگهدارنده ['cwmma']
ایمیل نگهدارنده ['calvin.metcalf@gmail.com']
نویسنده Calvin Metcalf
ایمیل نویسنده -
آدرس صفحه اصلی git+https://github.com/calvinmetcalf/derequire.git
آدرس اینترنتی https://github.com/calvinmetcalf/derequire
مجوز MIT
derequire [![Build Status](https://travis-ci.org/calvinmetcalf/derequire.svg)](https://travis-ci.org/calvinmetcalf/derequire) ==== ```bash npm install derequire ``` `derequire` can be used either as a JavaScript API or as a CLI. ### JavaScript API ```javascript var derequire = require('derequire'); var transformedCode = derequire(code, /*tokenTo=*/'_dereq_', /*tokenFrom=*/'require'); ``` `derequire` takes a string of code and replaces all instances of the `tokenFrom` identifier (defaults to 'require') and replaces them with the `tokenTo` identifier (defaults to '\_dereq\_') but only if they are functional arguments or variable declarations and subsequent uses of said argument, then returnes the code. For multiple renames at the same time, the following syntax is accepted: ```js derequire(code, [ { from: 'require', to: '_dereq_' }, { from: 'define', to: '_defi_' } ]); ``` __Note:__ In order to avoid quite a few headaches the token you're changing from and the token you're changing to need to be the same length. ### Command-line API There's a CLI that accepts a file path as an argument (absolute or relative to CWD) or reads from `stdin` if file path is `-` or omitted, and accepts `-f|--from` and `-t|--to` options that correspond to the API `tokenFrom` and `tokenTo` options. Examples: ```bash derequire input.js > output.js derequire < input.js > output.js browserify input.js | derequire > output.js browserify input.js | derequire - > output.js derequire input.js --from require --to _gonzo_ > output.js ```


نیازمندی

مقدار نام
^7.1.1 acorn
^1.4.6 concat-stream
^3.6.0 escope
^2.0.0 through2
^15.3.1 yargs


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

مقدار نام
12.16.0 Npm


نحوه نصب


نصب پکیج tgz derequire-2.1.1:

    npm install derequire-2.1.1.tgz