actionhero
Version:
The reusable, scalable, and quick node.js API server for stateless and stateful applications
10 lines (9 loc) • 344 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.actionheroVersion = void 0;
const path = require("path");
const fs = require("fs");
const packageJson = JSON.parse(fs
.readFileSync(path.join(__dirname, "..", "..", "..", "package.json"))
.toString());
exports.actionheroVersion = packageJson.version;