@modern-js/server-core
Version:
A Progressive React Framework for modern web development.
39 lines (38 loc) • 972 B
JavaScript
import * as ah from "async_hooks";
var createStorage = function() {
var storage;
if (typeof ah.AsyncLocalStorage !== "undefined") {
storage = new ah.AsyncLocalStorage();
}
var run = function(context, cb) {
if (!storage) {
throw new Error("Unable to use async_hook, please confirm the node version >= 12.17\n ");
}
return new Promise(function(resolve, reject) {
storage.run(context, function() {
try {
return resolve(cb());
} catch (error) {
return reject(error);
}
});
});
};
var useHonoContext = function() {
if (!storage) {
throw new Error("Unable to use async_hook, please confirm the node version >= 12.17\n ");
}
var context = storage.getStore();
if (!context) {
throw new Error("Can't call useContext out of server scope");
}
return context;
};
return {
run,
useHonoContext
};
};
export {
createStorage
};