mirror of
https://github.com/gchq/CyberChef
synced 2025-12-23 19:53:26 +00:00
Improve CJS and ESM module support #1037
This commit is contained in:
36
src/node/repl.mjs
Normal file
36
src/node/repl.mjs
Normal file
@@ -0,0 +1,36 @@
|
||||
/**
|
||||
* Create a REPL server for chef
|
||||
*
|
||||
*
|
||||
* @author d98762656 [d98762625@gmail.com]
|
||||
* @copyright Crown Copyright 2018
|
||||
* @license Apache-2.0
|
||||
*/
|
||||
|
||||
import chef from "./index.mjs";
|
||||
import repl from "repl";
|
||||
|
||||
|
||||
/* eslint no-console: ["off"] */
|
||||
|
||||
console.log(`
|
||||
______ __ ________ ____
|
||||
/ ____/_ __/ /_ ___ _____/ ____/ /_ ___ / __/
|
||||
/ / / / / / __ \\/ _ \\/ ___/ / / __ \\/ _ \\/ /_
|
||||
/ /___/ /_/ / /_/ / __/ / / /___/ / / / __/ __/
|
||||
\\____/\\__, /_.___/\\___/_/ \\____/_/ /_/\\___/_/
|
||||
/____/
|
||||
|
||||
`);
|
||||
const replServer = repl.start({
|
||||
prompt: "chef > ",
|
||||
});
|
||||
|
||||
global.File = chef.File;
|
||||
|
||||
Object.keys(chef).forEach((key) => {
|
||||
if (key !== "operations") {
|
||||
replServer.context[key] = chef[key];
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user