R
R
Roman2018-10-03 09:01:06
Layout
Roman, 2018-10-03 09:01:06

Is it possible to build websites without gulp?

Hello. I am a beginner layout designer. I took layout courses, I had a very strong motivation, but when it came to gulp, my motivation dropped sharply.. I don’t understand how to work with it... I don’t understand why it is needed in principle. .. I can also download files manually .. I can’t understand how to work with it and what benefits it brings besides crap with it .. So many concepts, some kind of manifestos, bower, npm .... If I typeset at home and on work the same project.... How then to be? It turns out only on one computer it is possible to work? Are there coders who do not work with gulp and the like?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
A
Alexey Ukolov, 2018-10-03
@alexey-m-ukolov

I can also download files manually.
That's when you do this stupid routine work seven times a day and forget to do it four more times, then you will understand.

D
Dymok, 2018-10-03
@UnluckySerivelha

In fact, it saves a lot of time, mainly when using preprocessors
. It is well described here - Why is Gulp needed?
If you need to work on several computers on one project, then it is enough to transfer the packages.json file with all dependencies and install them usingnpm i

V
Vyach Gor, 2018-10-03
@sharnirio

At a new job, sometimes a clean layout began to come in for revision without a assembler, it was not very (to be honest, not at all) convenient after a couple of years of working with gulp grunt. So after a couple of such projects, I realized that at least the necessary minimum for such work is needed, namely:
1) a server for statics so that you do not manually update
- install browser-sync ( https://browsersync.io/) globally to start the server, enter in the command line - 'npm install -g browser-sync'
- in the future, the server is started (enter the command in the root of the project) by the command - 'browser-sync start --server --files "./**/*.+ (css|html|js)" --directory "/" --no-notify '
2) Preprocessors in my case scss (I just rename the main style file, say style.css to style.scss and work with the latter)
- you can use the method convenient for you to compile from scss to css, I compile via the command line, for this I use globally installed ruby-sass ( https://sass-lang.com/ruby-sass) command (gem install sass) need ruby ​​installed and install watcher and compile files with command "sass --no-cache --sourcemap=none --watch style.scss:style.css --style expanded"
3) for the main commands, create bash aliases for a quick call to the
ps command. so it is possible without gulp in principle, but at least the first 2 points must be used in any case.

A
AbaGardon, 2018-10-03
@AbaGardon

Is it possible to build websites without gulp?

Answering your question, I want to say that gulp is just a tool with which you make up a site.
Now I can say that you don’t need to get hung up on them (but you won’t get a job without them). Then, as you learn to do your job "correctly" and want to speed up the speed of work, you will definitely want to use it and you may wonder why you didn't use assemblers before. And this applies to all developer tools, not only Gulp but webpack, yarn, npm and whatever else we have....

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question