amazon-modern-widgets
Version:
Amazon Modern Widgets for Amazon affiliate websites based on Amazon PAAPI v5
18 lines • 577 B
JavaScript
;
/**
* Main AMW
* ----------------------------------------------
* Amazon Modern Widgets (AMW).
*
* @author : Ludovic Toinel <ludovic@toinel.com>
* @src : https://github.com/ltoinel/amw
*/
Object.defineProperty(exports, "__esModule", { value: true });
// Set a default environment by default
process.env.NODE_ENV = process.env.NODE_ENV || 'production';
// Import the main application
const AmwServer_1 = require("./server/AmwServer");
// Start the AMW Server
const amwServer = new AmwServer_1.AmwServer();
amwServer.start();
//# sourceMappingURL=main.js.map