Code Monkey home page Code Monkey logo

gulpexample's People

Contributors

opentechconsult avatar

Watchers

 avatar  avatar

gulpexample's Issues

Adding Gulpl to a project

We have created a project and we want to add gulp to the project. To that end we need to do the following:

npm i -g gulp-cli
mkdir gulpexample
cd gulpexample
npm init -y
npm i -save-dev gulp

Next create file called gulpfile.js

touch gulpfile.js

Creating and running Gulp tasks

Creating Gulp tasks involve writing Node code with Gulp's API in a file called gulpfile.js. Gulp's API has methods for things like finding files and piping them through plugins that change them.

We are going to do the following to illustrate how to create a gulp task

  • We use gulp.src to find JSX file
  • use Babel to process ES2015 and React
  • concat and join each file together

Using separate file for larger project

As projects grows, they tend to need more tasks. We end up with long gulpfile that is difficult to understand. We can get around this problem by breaking the gulpfile code into separate modules.
Gulp uses Node's module system to load its plugins. So we can use Node's module system to split long gulpfile to make them more maintainable. To use separate files, we do the following:

  1. Create a folder called gulp and a sub-folder called tasks

mkdir -p gulp/tasks

  1. Inside the tasks folder create gulp build file

cd gulp/tasks
touch development-build.js production-build.js

  1. Inside ./gulp folder, create a file called index.js

cd .. to cd to the gulp folder and touch index.jsto create the index.js file

Watching for changes

As a web developer we want to avoid build/refresh cycle as possible. One simple way to streamline builds is to use a Gulp plugin to watch the filesystem for changes.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.