Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
postcss-url
Advanced tools
The postcss-url npm package is a PostCSS plugin used to process URLs in CSS. It allows developers to adjust asset URLs, inline images, or copy assets to a different location during the build process.
Rebasing URLs
This feature allows you to adjust URLs based on the output directory, ensuring that they are correct in the built CSS.
postcss([ require('postcss-url')({ url: 'rebase' }) ]) // This will rebase all URLs according to the destination directory
Inlining images
This feature enables the inlining of images into your CSS, reducing the number of HTTP requests needed for loading assets.
postcss([ require('postcss-url')({ url: 'inline' }) ]) // This will inline images as base64 data URIs
Copying assets
This feature allows you to copy assets from your source CSS to a specified directory, which can be useful for organizing your build output.
postcss([ require('postcss-url')({ url: 'copy', assetsPath: 'img' }) ]) // This will copy referenced assets to a specified directory
cssnano is a modular minifier for CSS that includes functionalities for optimizing and transforming values, which can include URL rebasing. It differs from postcss-url in that it is more focused on overall CSS optimization rather than just URL processing.
gulp-rev is a gulp plugin for asset revisioning by appending content hash to filenames. It can rewrite asset references in CSS, which is similar to some of the functionalities of postcss-url, but it is designed to work within the gulp ecosystem.
PostCSS plugin to rebase, inline or copy on url().
$ npm install postcss-url
// dependencies
const fs = require("fs")
const postcss = require("postcss")
const url = require("postcss-url")
// css to be processed
const css = fs.readFileSync("input.css", "utf8")
// process css
const output = postcss()
.use(url({
url: "rebase"
}))
.process(css, {
from: "src/stylesheet/index.css",
to: "dist/index.css"
})
before:
.element {
background: url('images/sprite.png');
}
after:
.element {
/* rebasing path by new destination */
background: url('../src/stylesheet/images/sprite.png');
}
// postcss-url options
const options = {
url: 'inline'
};
postcss()
.use(url(options))
.process(css, {
from: "src/stylesheet/index.css",
to: "dist/index.css"
})
before:
.element {
background: url('/images/sprite.png');
filter: url('/images/circle.svg');
}
after:
.element {
/* inlined png as base64 */
background: url('data:image/png;base64,R0lGODlhAQABAJH/AP///wAAAP///wAAACH/C0FET0JFOklSMS4');
/* inlined svg as encodeURIComponent */
filter: url('data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%2F%3E');
}
// postcss-url options
const options = {
url: 'copy',
// base path to search assets from
basePath: path.resolve('node_modules/bootstrap'),
// dir to copy assets
assetsPath: 'img',
// using hash names for assets (generates from asset content)
useHash: true
};
postcss()
.use(url(options))
.process(css, {
from: "src/stylesheet/index.css",
to: "dist/index.css"
})
before:
.element {
background: url('/images/sprite.png');
}
after:
.element {
/* copy 'sprite.png' from 'node_modules/bootstrap/images/' to 'dist/img/' */
/* and rename it by hash function */
background: url('img/a2ds3kfu.png');
}
const options = [
{ filter: '**/assets/copy/*.png', url: 'copy', assetsPath: 'img', useHash: true },
{ filter: '**/assets/inline/*.svg', url: 'inline' },
{ filter: '**/assets/**/*.gif', url: 'rebase' },
// using custom function to build url
{ filter: 'cdn/**/*', url: (asset) => `https://cdn.url/${asset.url}` }
];
postcss().use(url(options))
Checkout tests for examples.
rebase
- defaultinline
basePath
- path or array of paths to search assets (relative to from
, or absolute)encodeType
- base64
, encodeURI
, encodeURIComponent
maxSize
- file size in kbytesfallback
- copy
or custom function for files > maxSize
copy
basePath
- path or array of paths to search assets (relative to from
, or absolute)assetsPath
- directory to copy assets (relative to to
or absolute)useHash
- use filehash(xxhash) for naminghashOptions
- options for hash functioncustom {Function}
url
rebase
- (default)Allow you to fix url()
according to postcss to
and/or from
options (rebase to to
first if available, otherwise from
or process.cwd()
).
inline
Allow you to inline assets using base64 encoding. Can use postcss from
option to find ressources.
copy
Allow you to copy and rebase assets according to postcss to
, assetsPath
and from
options (assetsPath
is relative to the option to
).
url: {Function}
Custom transform function. Takes following arguments:
asset
url
- original urlpathname
- url pathname (url without search or hash)absolutePath
- absolute path to assetrelativePath
- current relative path to assetsearch
- search from url
, ex. ?query=1
from ./image.png?query=1
hash
- hash from url
, ex. #spriteLink
from ../asset.svg#spriteLink
dir
from
- postcss option fromto
- postcss option tofile
- decl file pathoptions
- postcss-url matched optionsdecl
- related postcss declaration objectwarn
- wrapped function result.warn
for current decl
result
– postcss result objectAnd should return the transformed url. You can use this option to adjust urls for CDN.
maxSize
(default: 14
)
Specify the maximum file size to inline (in kbytes)
filter
A regular expression e.g. /\.svg$/
, a minimatch string e.g. '**/*.svg'
or a custom filter function to determine wether a file should be inlined.
fallback
The url fallback method to use if max size is exceeded or url contains a hash. Custom transform functions are supported.
basePath
Specify the base path or list of base paths where to search images from
assetsPath
(default: false
)
If you specify an assetsPath
, the assets files will be copied in that
destination
useHash
(default: false
)
If set to true
the copy method is going to rename the path of the files by a hash name
hashOptions
method
(default: xxhash32
)
Hash method xxhash32|xxhash64
or custom function (accept file buffer)
shrink
(default: 8
)
Result hash shrink count
Work on a branch, install dev-dependencies, respect coding style & run tests before submitting a bug fix or a feature.
$ git clone https://github.com/postcss/postcss-url.git
$ git checkout -b patch-1
$ npm install
$ npm test
FAQs
PostCSS plugin to rebase or inline on url().
The npm package postcss-url receives a total of 673,597 weekly downloads. As such, postcss-url popularity was classified as popular.
We found that postcss-url demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.