Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

roninliu/gulp-cdn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

13 Commits

Repository files navigation

Gulp-cdn plug


gulp-cdn: replace the html files require cdn domain automatically replace all the corresponding domain url, support the replacement javascript, css, img, etc. html, css , javascript code introduced using the domain name

Documentation

[Chinese] (https://github.com/roninliu/gulp-cdn/blob/master/README-ZH.md "Chinese") | [English] (https://github.com/roninliu/gulp-cdn/ blob / master / README.md "English")


1. Installation

npm install gulp-cdn --save-dev

2. gulpfile Configuration

var gulp = require('gulp');
var cdn = require('gulp-cdn');
gulp("default", function(){
return gulp.src ("./src/*.html")
.pipe(cdn({
domain:"http://localhost",
cdn:"http://cdn"
}))
.pipe (gulp.dest("./dist/"))
})

or array config

var gulp = require('gulp');
var cdn = require('gulp-cdn');
gulp("default", function(){
return gulp.src ("./src/*.html")
.pipe(cdn([{
domain:"http://localhost",
cdn:"http://cdn"
},{
domain:"http://localhost2",
cdn:"http://cdn2"
}]))
.pipe (gulp.dest("./dist/"))
})

3. Using After Effects

  • Replace ago
<Script src = "http: //localhost/js/common.js"> </ script>
<Link rel = "stylesheet" type = "text / css" href = "http: //localhost/index.css">
<Img src = "http: //localhost/img/share.png" alt = "">
  • Replace after
<Script src = "http: //cdn/js/common.js"> </ script>
<Link rel = "stylesheet" type = "text / css" href = "http: //cdn/index.css">
<Img src = "http: //cdn/img/share.png" alt = "">

see exampleexample

change log

2016年01月04日: support array config

More questions, please contact Ronin (roninliu@foxmail.com)

About

cdn change url for html

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

Contributors

AltStyle によって変換されたページ (->オリジナル) /