公式ドキュメントによると、これは簡単です:
使用法:
var autoprefixer = require('autoprefixer-core');
var postcss = require('postcss');
postcss([ autoprefixer ]).process(css).then(function (result) {
result.warnings().forEach(function (warn) {
console.warn(warn.toString());
});
console.log(result.css);
});
css
ただし、で使用するオブジェクトを確立するために正確に何をするかについては混乱していますprocess()
。の結果を使用してみましたfs.readfile()
が、機能していないようです。私のサーバー モジュールはかなり大きいので、ここではコードを省略した方がよいかもしれません。css
プロセス関数の作成方法を知る必要があるだけです。