Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-concat

Package Overview
Dependencies
Maintainers
2
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-concat

Concatenates files

  • 2.6.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
438K
increased by3.28%
Maintainers
2
Weekly downloads
 
Created

What is gulp-concat?

The gulp-concat npm package is a plugin for Gulp, a streaming build system. It is used to concatenate multiple files into a single file, which is useful for tasks like combining multiple JavaScript or CSS files into one to reduce the number of HTTP requests and improve web performance.

What are gulp-concat's main functionalities?

Concatenate JavaScript files

This feature allows you to concatenate multiple JavaScript files into a single file named 'all.js'. The source files are located in the 'src/js/' directory, and the concatenated file is saved in the 'dist/js/' directory.

const gulp = require('gulp');
const concat = require('gulp-concat');

gulp.task('scripts', function() {
  return gulp.src('src/js/*.js')
    .pipe(concat('all.js'))
    .pipe(gulp.dest('dist/js'));
});

Concatenate CSS files

This feature allows you to concatenate multiple CSS files into a single file named 'all.css'. The source files are located in the 'src/css/' directory, and the concatenated file is saved in the 'dist/css/' directory.

const gulp = require('gulp');
const concat = require('gulp-concat');

gulp.task('styles', function() {
  return gulp.src('src/css/*.css')
    .pipe(concat('all.css'))
    .pipe(gulp.dest('dist/css'));
});

Concatenate with custom separator

This feature allows you to concatenate files with a custom separator. In this example, a semicolon (';') is used as the separator between concatenated JavaScript files.

const gulp = require('gulp');
const concat = require('gulp-concat');

gulp.task('scripts', function() {
  return gulp.src('src/js/*.js')
    .pipe(concat({ path: 'all.js', newLine: ';' }))
    .pipe(gulp.dest('dist/js'));
});

Other packages similar to gulp-concat

Keywords

FAQs

Package last updated on 13 Nov 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc