معرفی شرکت ها


gulp-insert-0.5.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Append or Prepend a string with gulp
ویژگی مقدار
سیستم عامل -
نام فایل gulp-insert-0.5.0
نام gulp-insert
نسخه کتابخانه 0.5.0
نگهدارنده ['rschmukler', 'nfroidure']
ایمیل نگهدارنده ['ryan@slingingcode.com', 'nfroidure@elitwork.com']
نویسنده Ryan Schmukler
ایمیل نویسنده ryan@slingingcode.com
آدرس صفحه اصلی git://github.com/rschmukler/gulp-insert.git
آدرس اینترنتی https://github.com/rschmukler/gulp-insert/
مجوز MIT
# gulp-insert String manipulation library for gulp ## Usage ``` npm install gulp-insert ``` ```js var insert = require('gulp-insert'); ``` ## Append Appends a string onto the contents. ```js .pipe(insert.append('world')); // Appends 'world' to the contents of every file ``` ## Prepend Prepends a string onto the contents. ```js .pipe(insert.prepend('Hello')); // Prepends 'Hello' to the contents of every file ``` ## Wrap Wraps the contents with two strings. ```js .pipe(insert.wrap('Hello', 'World')); // prepends 'hello' and appends 'world' to the contents ``` ## Transform Calls a function with the contents of the file. ```js .pipe(insert.transform(function(contents, file) { return contents.toUpperCase(); })); ``` Transform has access to the underlying vinyl file. The following code adds a '//' comment with the full file name before the actual content. ```js .pipe(insert.transform(function(contents, file) { var comment = '// local file: ' + file.path + '\n'; return comment + contents; })); ``` See https://github.com/wearefractal/vinyl for docmentation on the 'file' parameter.


نیازمندی

مقدار نام
^1.0.26-4 readable-stream
0.0.6 streamqueue


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

مقدار نام
2.3.0 Npm


نحوه نصب


نصب پکیج tgz gulp-insert-0.5.0:

    npm install gulp-insert-0.5.0.tgz