0% found this document useful (0 votes)
1K views3 pages

Workflow Automation With Gulp

This document contains a table with questions and answers related to Gulp and streams. It includes questions about installing Gulp, the difference between Grunt and Gulp, stream types in Gulp, common Gulp plugins like gulp-watch and gulp-imagemin, the purpose of gulpfile.js, and whether streams are asynchronous or not.

Uploaded by

kashyap
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1K views3 pages

Workflow Automation With Gulp

This document contains a table with questions and answers related to Gulp and streams. It includes questions about installing Gulp, the difference between Grunt and Gulp, stream types in Gulp, common Gulp plugins like gulp-watch and gulp-imagemin, the purpose of gulpfile.js, and whether streams are asynchronous or not.

Uploaded by

kashyap
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
You are on page 1/ 3

S.

No
1
2
3
4
5
6
7
8
10

11
12
13
14
15
16
17
18
19
20
21
22
24
25
26
27
28
30
31
32
33
34
35

TCS INTERNAL USE


Question
How does installing Gulp globally help?
Before installation of Gulp, installation of _____________ acts as pre-requisite
Between Grunt and Gulp, which is relatively fast?
Which Streams provide ability to both read and write?
How many types of Streams are available?
Streams are Asynchronous. Is this True or False?
While installing gulp, the first installation step would be ________.
Streams which play vital role in gulp, has its origin from __________.
Streams are represented as _________.

While installing gulp with $npm install gulp --save-dev, what does --save-dev represents?
Which plugin notifies whenever there is any change in file?
Which command in the CLI will trigger the 'default` task?
Which task would be called in gulp, by default?
Compression of images could be easily achieved using which gulp plug-in?
Which plugin helps in task dependencies?
The main objective of compressing (images / CSS / JavaScript) is to help with ____________.
Which helps with sequencing the tasks one bye one?
Which package helps in minifying the CSS?
gulp.src in gulpfile.js refers to ______.
gulp-concat helps with __________
In-memory caching is enabled with the help of which gulp plug-in?
To convert .svg icons into fonts, gulp provides ________ plug-in
Which streams help to pass data to writable /duplex / transform streams?
The default task / plug-ins in gulp are mentioned in this ______ file.
Which plug-in has optimizers and compressors?
How to check if gulp has been installed successfully?
While installing the gulp using the syntax npm install gulp --save-dev, ________section of _________ is updated.
Which among the following helps to compile into .CSS format?
The default task representation in gulp will be like _________.
Organizing the gulp plug-ins can be easily achieved through
The different kinds of Streams include ______________.
Streams give higher flow control. Is this True or False?

TCS INTERNAL USE


Correct
Helps to run gulp command from any project folder
node
Gulp
Transform
5
1
$npm install gulp g
Unix
.pipe()
installs Gulp as a development dependency and
package.json updated
gulp-watch
gulp
Default
gulp-imagemin
No gulp plug-ins needed
All options
.pipe
gulp-minify-css
Source location of files to be acted upon
Concatenation of files in given location
gulp-cached
gulp-iconfont
Readable
gulpfile.js
gulp-plumber
gulp -v
devDependencies, package.json
Both options
gulp.task('default',function(){ });
gulp-load-plugins
readable,writable,duplex, classic, transform
1

TCS INTERNAL USE

You might also like