معرفی شرکت ها


harmonize-2.0.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Enables --harmony flags programmatically.
ویژگی مقدار
سیستم عامل -
نام فایل harmonize-2.0.0
نام harmonize
نسخه کتابخانه 2.0.0
نگهدارنده ['dcode']
ایمیل نگهدارنده ['dcode@dcode.io']
نویسنده Daniel Wirtz
ایمیل نویسنده -
آدرس صفحه اصلی git+https://github.com/dcodeIO/node-harmonize.git
آدرس اینترنتی https://github.com/dcodeIO/node-harmonize#readme
مجوز BSD-3-Clause
harmonize ========= Enables harmony features programmatically. Usage ----- Enabling just the `--harmony` flag: ```js require("harmonize")(); ``` Enabling specific features: ```js require("harmonize")([ "harmony", "harmony_sharedarraybuffer" ]); ``` Note that unsupported flags are simply ignored. How it works ------------ ```js var harmonize = require("harmonize"); // ^ Transparently spawns another node process with --v8-options and // parses enabled and supported harmony flags. You can also inspect // these: console.log(harmonize.enabled, harmonize.supported); harmonize([ "harmony", ... ]); // ^ Interrupts process flow within the parent and starts a new process // with the harmony flags you provided. // Everything below is executed within the harmonized child only. ``` Quirks ------ While no code below the call to `harmonize()` is executed within the parent, it must still be parseable without any additional flags. For example, if you are enabling generators which aren't supported by your node version without the respective flag, using generators syntax within the main file will result in a parse error. In such cases, just move code that requires a flag into a separate file and `require` it instead, which will prevent the parse error. **License:** [BSD 3-Clause License](https://opensource.org/licenses/BSD-3-Clause)


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

مقدار نام
6.9.1 Npm


نحوه نصب


نصب پکیج tgz harmonize-2.0.0:

    npm install harmonize-2.0.0.tgz