Coder Social home page Coder Social logo

imagemin-jpegtran's Introduction

imagemin-jpegtran

jpegtran imagemin plugin

Install

$ npm install --save imagemin-jpegtran

Usage

const imagemin = require('imagemin');
const imageminJpegtran = require('imagemin-jpegtran');

(async () => {
	await imagemin(['images/*.jpg'], {
		destination: 'build/images',
		plugins: [
			imageminJpegtran()
		]
	});

	console.log('Images optimized');
})();

API

imageminJpegtran(options?)(buffer)

Returns a promise for a buffer.

options

Type: object

progressive

Type: boolean
Default: false

Lossless conversion to progressive.

arithmetic

Type: boolean
Default: false

Use arithmetic coding.

buffer

Type: buffer

Buffer to optimize.

imagemin-jpegtran's People

Contributors

1000ch avatar georgephillips avatar kevva avatar shinnn avatar sindresorhus avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

imagemin-jpegtran's Issues

Unable to run demo using nodejs

have a js file (demo.js) :

const imagemin = require('imagemin');
const imageminJpegtran = require('imagemin-jpegtran');

(async () => {
	await imagemin(['img/*.jpg'], {
		destination: 'build/img',
		plugins: [
			imageminJpegtran()
		]
	});

	console.log('Images optimized');
})();

and package.json :

{
  "name": "imagemin",
  "version": "1.0.0",
  "dependencies": {
    "imagemin": "^8.0.0",
    "imagemin-jpegtran": "^7.0.0",
    "imagemin-pngquant": "^9.0.2",
    "jpegtran-bin": "^5.0.2"
  },
  "devDependencies": {},
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC"
}

run demo.js :

node demo.js

result :

C02F93TLMD6M:imagemin PLQin$ node demo.js 
internal/modules/cjs/loader.js:1080
      throw new ERR_REQUIRE_ESM(filename, parentPath, packageJsonPath);
      ^

Error [ERR_REQUIRE_ESM]: Must use import to load ES Module: /Users/PLQin/Desktop/AtHome/demo/imagemin/node_modules/imagemin/index.js
require() of ES modules is not supported.
require() of /Users/PLQin/Desktop/AtHome/demo/imagemin/node_modules/imagemin/index.js from /Users/PLQin/Desktop/AtHome/demo/imagemin/demo.js is an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which defines all .js files in that package scope as ES modules.
Instead rename index.js to end in .cjs, change the requiring code to use import(), or remove "type": "module" from /Users/PLQin/Desktop/AtHome/demo/imagemin/node_modules/imagemin/package.json.

    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1080:13)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/PLQin/Desktop/AtHome/demo/imagemin/demo.js:1:18)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14) {
  code: 'ERR_REQUIRE_ESM'
}

What should I do? I just want to use nodejs to compress my pictures (all the pictures in the directory).

Is there any other tool to recommend?

"read ECONNRESET" when running with some large JPEGs

When using the attached image with imagemin, I get a read ECONNRESET that's coming from the jpegtran child process created in this module. I've spent some time looking at this, and haven't really figured out why this is happening. I commented out this error handling and made a change to through2 to let it write the file. The output file ends up intact, despite the error, and has the same md5sum as running the image manually through the jpegtran vendor binary. Also, when manually running the vendor binary, it exits without error.

{ [Error: read ECONNRESET] code: 'ECONNRESET', errno: 'ECONNRESET', syscall: 'read' }

_dsc1100

ENOENT jpegtran.exe in the vendor folder does not exists

I tried reinstalling jpegtran (even with --force) but the vendor folder in the node_modules/jpegtran-bin seems to not be installed for some reasons. In fact, when installing the plugin with npm, there is no "postinstall"
The error is thrown when running the gulp task with imagemin and jpegtran()

Error in plugin 'gulp-imagemin:'
Message:
    spawn myAppPath\node_modules\jpegtran-bin\vendor\jpeg
tran.exe ENOENT
Details:
    code: ENOENT
    errno: ENOENT
    syscall: spawn myAppPath\node_modules\jpegtran-bin\ve
ndor\jpegtran.exe
    path:myAppPath\node_modules\jpegtran-bin\vendor\jpeg
tran.exe
    spawnargs: -copy,none,-optimize,-progressive
    fileName: myFilenamePath

I'm on Windows 7 32bit

Error with options progressive or/and arithmetic

With progressive or/and arithmetic I get Requested feature was omitted at compile time error

without the options imageminJpegtran works fine.

OS X 10.11.5
Node.js v6.2.0

    .then(buffer => imagemin.buffer(buffer, {
        plugins: [imageminJpegtran({
            progressive: true,
            arithmetic: true
        })]
    }))
{ Error: Requested feature was omitted at compile time

    at ChildProcess.exithandler (child_process.js:202:12)
    at emitTwo (events.js:106:13)
    at ChildProcess.emit (events.js:191:7)
    at maybeClose (internal/child_process.js:850:16)
    at Socket.<anonymous> (internal/child_process.js:323:11)
    at emitOne (events.js:96:13)
    at Socket.emit (events.js:188:7)
    at Pipe._handle.close [as _onclose] (net.js:492:12)
  killed: false,
  code: 1,
  signal: null,
  cmd: 'node_modules/jpegtran-bin/vendor/jpegtran -copy none -optimize -progressive -arithmetic -outfile /var/folders/vc/g0g62cj15vg3vwyn3pdbp6bc0000gp/T/46ce5620-29c2-4872-9d6e-df4ab149ea89 /var/folders/vc/g0g62cj15vg3vwyn3pdbp6bc0000gp/T/b623691f-c9a4-4a9a-9f6d-3cdf3e87b83a',
  stdout: '',
  stderr: 'Requested feature was omitted at compile time\n' }

Builds using imagemin breaking since 4.2.0

For the last couple days, all my builds that require [email protected] have been failing due to the following warning:

Warning: Error: Error: write EPIPE/var/data/atlassian/application-data/bamboo/xml-data/build-dir/DSP-JOB1/web/node_modules/grunt-contrib-imagemin/node_modules/imagemin/node_modules/imagemin-jpegtran/node_modules/jpegtran-bin/vendor/jpegtran: /lib64/libc.so.6: version `GLIBC_2.14' not found (required by /var/data/atlassian/application-data/bamboo/xml-data/build-dir/DSP-JOB1/web/node_modules/grunt-contrib-imagemin/node_modules/imagemin/node_modules/imagemin-jpegtran/node_modules/jpegtran-bin/vendor/jpegtran)

I'm wondering if it's due to the 4.2.0 bump. Any ideas?

Thanks!

How do you fix non-ASCII filenames problem?

Hello,

Direct using of jpegtran.exe doesn't work with non-ASCII filenames, e.g تست.jpg. but imagemin can handle this, how did you do that? do you have any custom build of jpegtran.exe?

Can't install the package on Windows

Below is the output while trying to install the package:

$ npm install imagemin-jpegtran

> [email protected] postinstall C:\Users\Ahmad\Desktop\project\node_modules\jpegtran-bin
> node lib/install.js

  ‼ getaddrinfo ENOTFOUND raw.githubusercontent.com raw.githubusercontent.com:443
  ‼ jpegtran pre-build test failed
  i compiling from source
  × Error: Command failed: C:\Windows\system32\cmd.exe /s /c "./configure --disable-shared --prefix="C:\Users\Ahmad\Desktop\project\node_modules\jpegtran-bin\vendor" --bindir="C:\Users\Ahmad\Desktop\project\node_modules\jpegtran-bin\vendor""
'.' is not recognized as an internal or external command,
operable program or batch file.


    at Promise.all.then.arr (C:\Users\Ahmad\Desktop\project\node_modules\execa\index.js:231:11)
    at process._tickCallback (internal/process/next_tick.js:68:7)
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] postinstall: `node lib/install.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] postinstall script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\Ahmad\AppData\Roaming\npm-cache\_logs\2020-07-19T09_39_55_986Z-debug.log

OS: Windows 10 x64
Node version: 10.16.3
NPM version: 6.13.1

I can successfully install this package on a linux VM.

install error

> [email protected] postinstall F:\workspace\imgcache\hzone_v2\node_modules\gulp-imagemin\node_modules\imagemin\node_modules\imagemin-jpegtran\node_modules\jpegtran-bin                     
> node lib/install.js                                                                                                                                                                         

  √ jpegtran pre-build test passed successfully                                                                                                                                               
npm WARN addRemoteGit Error: Command failed: git -c core.longpaths=true config --get remote.origin.url                                                                                        
npm WARN addRemoteGit                                                                                                                                                                         
npm WARN addRemoteGit     at ChildProcess.exithandler (child_process.js:751:12)                                                                                                               
npm WARN addRemoteGit     at ChildProcess.emit (events.js:110:17)                                                                                                                             
npm WARN addRemoteGit     at maybeClose (child_process.js:1015:16)                                                                                                                            
npm WARN addRemoteGit     at Process.ChildProcess._handle.onexit (child_process.js:1087:5)                                                                                                    
npm WARN addRemoteGit  git+https://github.com/rynomad/jsbn.git resetting remote C:\Users\ronin\AppData\Roaming\npm-cache\_git-remotes\https-github-com-rynomad-jsbn-git-fe54fe73 because of er
ror: { [Error: Command failed: git -c core.longpaths=true config --get remote.origin.url                                                                                                      
npm WARN addRemoteGit ]                                                                                                                                                                       
npm WARN addRemoteGit   killed: false,                                                                                                                                                        
npm WARN addRemoteGit   code: 1,                                                                                                                                                              
npm WARN addRemoteGit   signal: null,                                                                                                                                                         
npm WARN addRemoteGit   cmd: 'git -c core.longpaths=true config --get remote.origin.url' }                                                                                                    
npm ERR! git clone --template=C:\Users\ronin\AppData\Roaming\npm-cache\_git-remotes\_templates --mirror https://github.com/rynomad/jsbn.git C:\Users\ronin\AppData\Roaming\npm-cache\_git-remo
tes\https-github-com-rynomad-jsbn-git-fe54fe73: Cloning into bare repository 'C:\Users\ronin\AppData\Roaming\npm-cache\_git-remotes\https-github-com-rynomad-jsbn-git-fe54fe73'...            
npm ERR! git clone --template=C:\Users\ronin\AppData\Roaming\npm-cache\_git-remotes\_templates --mirror https://github.com/rynomad/jsbn.git C:\Users\ronin\AppData\Roaming\npm-cache\_git-remo
tes\https-github-com-rynomad-jsbn-git-fe54fe73: fatal: Unable to find remote helper for 'https'                                                                                               
npm WARN optional dep failed, continuing [email protected]                                                                                                                                       

> [email protected] postinstall F:\workspace\imgcache\hzone_v2\node_modules\gulp-imagemin\node_modules\imagemin\node_modules\imagemin-optipng\node_modules\optipng-bin                        
> node lib/install.js                                                                                                                                                                         

npm install has a bug

$ npm install --save imagemin-jpegtran

[email protected] postinstall C:\Users\23973\Desktop\公司项目\nanwudi-H5\node_modules\jpegtran-bin
node lib/install.js

‼ getaddrinfo ENOENT raw.githubusercontent.com
‼ jpegtran pre-build test failed
i compiling from source
× Error: Command failed: C:\Windows\system32\cmd.exe /s /c "./configure --disable-shared --prefix="C:\Users\23973\Desktop\公司项目\nanwudi-H5\node_modules\jpegtran-bin\vendor" --bindir="C:\Users\23973\Desktop\公司项目\nanwudi-H5\node_modules\jpegtran-bin\vendor""
'.' �����ڲ����ⲿ���Ҳ���ǿ����еij���
���������ļ���

at C:\Users\23973\Desktop\公司项目\nanwudi-H5\node_modules\bin-build\node_modules\execa\index.js:231:11
at processTicksAndRejections (internal/process/task_queues.js:97:5)
at async Promise.all (index 0)

npm WARN [email protected] requires a peer of eslint@^2.0.0 || ^3.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of eslint-plugin-vue@^1.0.0 || ^2.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] postinstall: node lib/install.js
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] postinstall script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\23973\AppData\Roaming\npm-cache_logs\2020-11-09T05_37_17_181Z-debug.log

imagemin-jpegtran broken pipe

Note:

  • I'm using gulp and gulp-imagemin

This is my gulp task:

// Optimize Images
gulp.task('images', function () {
  return gulp.src('app/images/**/*')
    .pipe($.cache($.imagemin({
      progressive: true,
      interlaced: true
    })))
    .pipe(gulp.dest('dist/images'))
    .pipe($.size({title: 'images'}));
});

And this is my stack trace:

Unhandled rejection Error: Error: write EPIPE
    at ChildProcess.<anonymous> (/Users/oscarmcm/Code/html/sHyrax/node_modules/gulp-imagemin/node_modules/imagemin/node_modules/imagemin-jpegtran/index.js:60:11)
    at ChildProcess.emit (events.js:110:17)
    at maybeClose (child_process.js:1015:16)
    at Socket.<anonymous> (child_process.js:1183:11)
    at Socket.emit (events.js:107:17)
    at Pipe.close (net.js:485:12)

"decompress" Package have high severity vulnerabilities

there is high severity vulnerability package "decompress" please use another one because it effect users security.

Package: decompress

Dependency of : imagemin-jpegtran

Path : imagemin-jpegtran > jpegtran-bin > bin-wrapper > download >
decompress

Won't compile on win7

C:\test> npm install imagemin-jpegtran
/
> [email protected] postinstall C:\Users\mar\node_modules\imagemin-jpegtran\node_modules\jpegtran-bin
> node lib/install.js

  ‼ ENOENT, stat 'C:\Users\mar\node_modules\imagemin-jpegtran\node_modules\jpegtran-bin\vendor\jpegtran.exe'
  ‼ jpegtran pre-build test failed
  i compiling from source
  × Error: Command failed: '.' is not recognized as an internal or external command, operable program or batch file.

    at ChildProcess.exithandler (child_process.js:648:15)
    at ChildProcess.emit (events.js:98:17)
    at maybeClose (child_process.js:756:16)
    at Socket.<anonymous> (child_process.js:969:11)
    at Socket.emit (events.js:95:17)
    at Pipe.close (net.js:465:12)
[email protected] node_modules\imagemin-jpegtran
├── [email protected]
├── [email protected] ([email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected])

A colleague also running Win7 has this exact same issue,
whereas install seems to work smoothly on OSX.

C:\test> node --version
v0.10.33

C:\test> npm --version
1.4.28

ReferenceError: buffer is not defined

I get this error

/Users/username/Sites/process images/node_modules/imagemin-jpegtran/index.js:61
            if (err && (err.code !== 'EPIPE' || !isJpg(buffer))) {
                                                       ^

ReferenceError: buffer is not defined
    at ChildProcess.<anonymous> (/Users/mvasin/Sites/process images/node_modules/imagemin-jpegtran/index.js:61:47)
    at emitTwo (events.js:87:13)
    at ChildProcess.emit (events.js:172:7)
    at maybeClose (internal/child_process.js:817:16)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:211:5)

every time I run this script

gulp.task('imagemin', () => {
    return gulp.src('src/**/*')
        .pipe(plumber({
            errorHandler: function (err) {
                gutil.beep();
                console.log(err);
               // this.emit('end');
            }
        }))
        .pipe(changed('dest'))
        .pipe(remember('all'))
        .pipe(imagemin({
            optimizationLevel: 2,
            progressive: true,
            svgoPlugins: [{removeViewBox: false}],
            use: [pngquant()]
        }))
        .pipe(gulp.dest('dest'))
        .pipe(cache('cache1', {optimizeMemory: true}))
        .pipe(remember('all'))
        .pipe(cache('cache1', {optimizeMemory: true}))
        .pipe(gulp.dest('dest'));
});

while working on 1,35GB directory of files.

imagemin-jpegtran 5.0.0

After update imagemin-jpegtran 5.0.0 not working:
/Users/MobiDevices/Work/1000.tech/node_modules/readable-stream/lib/_stream_readable.js:740
stream.on('end', function () {
^

TypeError: stream.on is not a function

Error when using

Error: ...\jpegtran.exe: only one input file
usage: ...\jpegtran.exe [switches] [inputfile]

used as:

imagemin
.buffer(file.contents, {
 use: [
 imageminGifsicle(options.options.gif),
 imageminJpegtran(options.options.jpeg),
 imageminOptipng(options.options.png),
 imageminSvgo(options.options.svg)
]
})

Error [ERR_REQUIRE_ESM]: Must use import to load ES Module:

version :

node --version
v14.18.2 
npm --version 
8.3.0
"imagemin-jpegtran": "^7.0.0""
Error [ERR_REQUIRE_ESM]: Must use import to load ES Module: /home/metapodcod/Project/ecommerce/node_modules/imagemin-webp/index.js
require() of ES modules is not supported.
require() of /home/metapodcod/Project/ecommerce/node_modules/imagemin-webp/index.js from /home/metapodcod/Project/ecommerce/gulpfile.js is an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which defines all .js files in that package scope as ES modules.
Instead rename index.js to end in .cjs, change the requiring code to use import(), or remove "type": "module" from /home/metapodcod/Project/ecommerce/node_modules/imagemin-webp/package.json.

    at new NodeError (internal/errors.js:322:7)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1102:13)
    at Module.load (internal/modules/cjs/loader.js:950:32)
    at Function.Module._load (internal/modules/cjs/loader.js:790:12)
    at Module.require (internal/modules/cjs/loader.js:974:19)
    at require (internal/modules/cjs/helpers.js:93:18)
    at Object.<anonymous> (/home/metapodcod/Project/ecommerce/gulpfile.js:21:22)
    at Module._compile (internal/modules/cjs/loader.js:1085:14)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1114:10)
    at Module.load (internal/modules/cjs/loader.js:950:32) {
  code: 'ERR_REQUIRE_ESM'
}

Installation error

I'm getting this error on a Windows 7 32 bit machine:

node lib/install.js

‼ spawn ENOENT
‼ jpegtran pre-build test failed
i compiling from source
× Error: Command failed: '.' is not recognized as an internal or externa
and,
operable program or batch file.

at ChildProcess.exithandler (child_process.js:648:15)
at ChildProcess.emit (events.js:98:17)
at maybeClose (child_process.js:756:16)
at Process.ChildProcess._handle.onexit (child_process.js:823:5)

[email protected] node_modules\imagemin-jpegtran
├── [email protected]
├── [email protected] ([email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected])

Cheers,
Dave

Error with latest version (v6.0.0) only

Hi
I got this issue with the latest version of the plugin. Exactly this picture onboarding-flow-mfa-1.jpg can't be minify. The path is correct, there are 26 pictures before this error and that's work as expected but 5 pictures got this issue withtout any explanation.

The error: Le chemin d'acc�s sp�cifi� est introuvable. can be translated by the specified path is not found which is wrong

version node: V12.4.0
OS: Windows 10 64 bits

The previous version works perfectly

(node:39388) UnhandledPromiseRejectionWarning: Error: Error in file: src/main/resources/conf/template/assets/img/onboarding-flow-mfa-1.jpg

Le chemin d'acc�s sp�cifi� est introuvable.

    at notFoundError (C:\Users\Documents\projets\federation\node_modules\execa\node_modules\cross-spawn\lib\enoent.js:11:11)
    at verifyENOENT (C:\Users\Documents\projets\federation\node_modules\execa\node_modules\cross-spawn\lib\enoent.js:46:16)
    at ChildProcess.cp.emit (C:\Users\Documents\projets\federation\node_modules\execa\node_modules\cross-spawn\lib\enoent.js:33:19)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:272:12)
(node:39388) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6)
(node:39388) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
Done in 3.36s.

Cannot use in node alpine 14.16.0

Please suggest what to do for this scenario?

[email protected] postinstall /app/node_modules/jpegtran-bin
node lib/install.js

⚠ spawn /app/node_modules/jpegtran-bin/vendor/jpegtran ENOENT
⚠ jpegtran pre-build test failed
ℹ compiling from source
✖ Error: ENOENT: no such file or directory, open '/app/node_modules/jpegtran-bin/vendor/source/libjpeg-turbo-1.5.1.tar.gz'
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/watchpack/node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/pm2/node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/nodemon/node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/mocha/node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.