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

imagemin-simple

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

imagemin-simple

Replace images with minified one and generate small base64 image.

  • 1.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
26
increased by116.67%
Maintainers
1
Weekly downloads
 
Created
Source

Imagemin-simple

Replace images with minified one and generate small base64 image.

Travis Codecov Status npm package npm downloads

prettier license

Usage

imagemin

$ npx imagemin-simple imagemin '**/*.{jpg,png,JPG,PNG,svg,gif}'

base64

$ npx imagemin-simple base64 '**/*.{jpg,png,JPG,PNG}' --output-file base64.json
output
{
  "test-content1/project1/images/ai-image.jpg": {
    "imagePath": "test-content1/project1/images/ai-image.jpg",
    "width": 1000,
    "height": 449,
    "format": "jpeg",
    "base64": "data:image/jpeg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAANAB4DASIAAhEBAxEB/8QAGQAAAgMBAAAAAAAAAAAAAAAAAQYEBQcI/8QAJhAAAgEDAQcFAAAAAAAAAAAAAQIDAAQRBQYSExQxQVEhUpHB8P/EABUBAQEAAAAAAAAAAAAAAAAAAAQF/8QAGxEBAAICAwAAAAAAAAAAAAAAAQACAyESIjH/2gAMAwEAAhEDEQA/AOfo7aQIjvjhsxXI81ZPFHDDGzMDxBld3xQtMSo0AAXcQEP1J7/dSb6AchGSSRGhKgeg64pldSPc5ewaPcRW2qWdxMhliimSRo/cAwJFOW3OoW9/rIutMjaOFkwyFcFWJzj93pCsXIniYdVYH4rQNubjltH0iZYoTLcRJK7lBvElT4pGN0sn5zsAT//Z"
  },
  ...
}

API

imagemin-simple -h

imagemin-simple <command>

Commands:
  imagemin-simple imagemin  The imagemin command.
  imagemin-simple base64    Turn image into base64.

Options:
  -v, --version  Show version number                                   [boolean]
  -h, --help     Show help                                             [boolean]

For more information go to https://github.com/evenchange4/hsu-scripts

imagemin-simple imagemin -h

Usage: imagemin-simple imagemin <pattern> [options]
<pattern> Glob pattern to specify files.

Options:
  --plugin    The list of plugins to use.
                    [array] [default: ["jpegtran","pngquant","svgo","gifsicle"]]
  -h, --help  Show help                                                [boolean]
                                       [boolean]

Examples:
  imagemin-simple imagemin '**/*.{jpg,png,JPG,PNG,svg,gif}'
  imagemin-simple imagemin '**/*.png' --plugin pngquant

imagemin-simple base64 -h

Usage: imagemin-simple base64 <pattern> [options]
<pattern> Glob pattern to specify files.

Options:
  --output-file  The output json file.       [string] [default: "./base64.json"]
  --cwd          Set current working directory.                         [string]
  -h, --help     Show help                                             [boolean]

Examples:
  imagemin-simple base64 '**/*.{jpg,png,JPG,PNG}'
  imagemin-simple base64 '**/*.{jpg,png,JPG,PNG}' --output-file results.json
  imagemin-simple base64 '**/*.png' --cwd './docs'
cwd

The current working directory.

  • Default: process.cwd()
  • Examples:
# Default
$ npm run test:base64

# Set custom cwd
$ npm run test:base64-cwd

NOTE: Please check mrmlnc/fast-glob#cwd for more detail.

Development

  • node 12.3.1
  • yarn 1.16.0
$ yarn install --pure-lockfile
$ npm run test:base64

Test

$ yarn run build
$ yarn run flow-coverage
$ yarn run test:watch
$ yarn run test:base64
$ yarn run test:base64-cwd
$ yarn run format
$ yarn run eslint

Publish

$ npm version patch
$ npm run changelog
git commit & push

CONTRIBUTING

  • ⇄ Pull requests and ★ Stars are always welcome.
  • For bugs and feature requests, please create an issue.
  • Pull requests must be accompanied by passing automated tests.

CHANGELOG

LICENSE

FAQs

Package last updated on 28 May 2019

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