728x90
반응형
>> npm init
npm 실행
>>npm install minify
>>npm install fs
필요한것 설치
index.js 파일 생성(.css 파일 .js 파일 둘다 압축가능)
const minify = require('minify');
var fs = require('fs');
minify('파일경로/파일명') //해당파일 압축
.then(function(result){ //결과를 저장
console.log(result);
fs.writeFile('저장할경로/저장할파일명',result, function(error, data){
//변환된 내용을 파일로 저장한다.
if(error){throw error}
});
})
.catch(console.error);
>>node index.js
728x90
반응형
'퍼블리싱 > npm' 카테고리의 다른 글
버전이 안맞을때 원하는 버전으로 다시 설치 (다운그레이드) (420) | 2022.08.01 |
---|---|
[npm] 여러파일의(.css, .html) css 를 하나의 css 파일로 합치기 (389) | 2019.06.17 |
[npm] 자바스크립트 파일(.js) 압축및난독화하는 방법 uglify-js (0) | 2019.06.14 |
[npm]편하게 css 파일에 벤더프리픽스(vendor prefix) 추가하기 autoprefixer 사용법! (0) | 2019.06.14 |
[npm]Gulp를 이용해서 반복적인 작업 한번에 하기 (gulp-zip, gulp-images-resizer) (0) | 2019.06.04 |
댓글