The JavaScript compilation of GNU awk that runs in browser and NodeJS
npm install awkjsThis JavaScript library is a result of compiling GNU awk using emscripten. Here is a step-by-step guide on how to do it. Though the guide uses jq for the example, but the process is the same.
npm install awkjs --save
`$3
`
import { awkjs } from 'awkjs';awkjs().then(({ awk }) => {
// echo 'Hello World' | awk '{$2="AWK"; print $0}'
const output = awk('Hello World', '{$2="AWK"; print $0}', []);
// stdout has the result (succeeds)
const result = output.stdout;
// stderr has the error (fails)
const error = output.stderr;
});
`$3
The above awkjs() promise resolves to the Module object of emscripten API. However, for this library, the user should only cares and uses the awk method. Other members in the Module object should never be used.$3
`
// awk -V
awkjs().then(({ awk }) => {
const output = awk('', '', ['-V'])
});// echo 'AWK is an awesome!\nIt is usefully.\nAWK is cool.' | awk '/^AWK/'
awkjs().then(({ awk }) => {
const output = awk('AWK is an awesome!\nIt is usefully.\nAWK is cool.', '/^AWK/', []);
});
// echo 'JAVA code\nphp code\nJava tests' | awk 'tolower($0) ~ /^java/;'
awkjs().then(({ awk }) => {
const output = awk('JAVA code\nphp code\nJava tests', 'tolower($0) ~ /^java/;', []);
});
`$3
`
GNU Awk 5.1.0, API: 3.1
``