# node-automator **Repository Path**: TsubasaYeung/node-automator ## Basic Information - **Project Name**: node-automator - **Description**: No description available - **Primary Language**: Unknown - **License**: ISC - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-12-01 - **Last Updated**: 2025-12-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Tutorial > Install the dependencies ```sh $ npm install ``` ## Node ```sh $ node . ./examples/print_env.yml ``` ## Npx > You can pass encoded configuration content instead of a file path ```js function base64_encode(input) { return Buffer.from(input).toString('base64'); } var configuration = ` - type: print data: content: Hello, I'm <> `; console.log(base64_encode(configuration)); // output: Ci0gdHlwZTogcHJpbnQKICBkYXRhOgogICAgY29udGVudDogSGVsbG8sIEknbSA8PFVTRVJOQU1FPj4K ``` > then you can use npx to run any configuration ```sh npx node-automator Ci0gdHlwZTogcHJpbnQKICBkYXRhOgogICAgY29udGVudDogSGVsbG8sIEknbSA8PFVTRVJOQU1FPj4K ```