0.9.8 • Published 2 years ago

@asset-toolkit/image-compression v0.9.8

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

@asset-toolkit/image-compression / Exports

@asset-toolkit/image-compression

Table of contents

Type aliases

Functions

Type aliases

options

Ƭ options: Object

Type declaration

NameType
jpgany
pluginsany[] | boolean
png{ dithering: number | boolean ; posterize: number ; quality: number, number ; speed: number ; strip: boolean ; verbose: boolean } | any

Defined in

index.d.ts:1


props

Ƭ props: Object

Type declaration

NameType
pathIn?string
pathOutstring

Defined in

index.d.ts:13


returns

Ƭ returns: Object

Type declaration

NameType
pathOutstring

Defined in

index.d.ts:17

Functions

default

Const default(_props, _options?): Promise<returns>

Parameters

NameType
_propsprops
_options?options

Returns

Promise<returns>

Defined in

index.d.ts:20

Asset ToolKits

Node.js toolkits to optimize media assets.

Use a pipeline

A pipe function to concatenate toolkits.

const { pipeline } = require('@asset-toolkit/core')

const pipelineExample = pipeline(...fn)

pipelineExample({
  pathIn: './exampleIn/',
  pathOut: '../../exampleOut/',
})

Example with pipeline

With audio-sprite and json-minify tools. Use the function returned from pipeline to pass props and options.

The options is an array of object. Every object is linked to tools function passed to pipeline by our order.

npm i
@asset-toolkit/core
@asset-toolkit/audio-sprite
@asset-toolkit/json-minify
const { pipeline } = require('@asset-toolkit/core')
const audioSprite = require('@asset-toolkit/audio-sprite')
const jsonMinify = require('@asset-toolkit/json-minify')
const options = [
  {
    output: 'spriteTrack',
    export: 'mp3, m4a',
  },
] // first argument for first tool in pipeline

const pipelineAudio = pipeline(audioSprite, jsonMinify)

pipelineAudio(
  {
    pathIn: './audio/',
    pathOut: '../public/audio',
  },
  options,
)

Example with watcher

For relaunch automatically your pipeline everytime you add or modify the files in input folder.

const { pipeline, watchPipeline } = require('@asset-toolkit/core')
const jsonMinify = require('@asset-toolkit/json-minify')
const options = [
  {
    output: 'spriteTrack',
    export: 'mp3, m4a',
  },
] // first argument for first tool in pipeline

const pipelineJSON = pipeline(jsonMinify)

watchPipeline(pipelineJSON, {
  pathIn: './json/',
  pathOut: '../public/json',
})

How to use

Create a js file "example.js", with your code (import and configure the pipelines like examples).

Run your code with node: node example.js

License

MIT

0.9.8

2 years ago

0.9.7

2 years ago

0.9.6

2 years ago

0.9.5

2 years ago

0.9.4

2 years ago

0.9.3

2 years ago

0.9.2

2 years ago

0.9.1

2 years ago

0.9.0

2 years ago

0.7.2

2 years ago

0.8.0

2 years ago

0.7.1

2 years ago

0.5.0

2 years ago

0.7.0

2 years ago

0.6.1

2 years ago

0.5.2

2 years ago

0.6.0

2 years ago

0.5.1

2 years ago

0.4.4

3 years ago

0.4.1

3 years ago

0.4.2

3 years ago

0.3.0

3 years ago

0.2.2-alpha.0

3 years ago

0.2.1-alpha.0

3 years ago