![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
simple-boot-http-ssr
Advanced tools
SSR web server
const using = [
AnonServiceFront, AuthServiceFront,
LiveServiceFront, AuthMsgServiceFront,
AuthPetServiceFront, MyServiceFront,
AnonPetServiceFront
];
Factory.create(MakeSimFrontOption(window), using).then(it => {
it.run()
});
Promise.all([logger, transporter, new JsdomInitializer(environment.frontDistPath).run(), new DBInitializer().run()]).then(async ([log, email, jsdom, connection]) => {
await cacheScheduleManager.run(connection);
const otherInstanceSim = new Map<ConstructorType<any>, any>();
otherInstanceSim.set(Connection, connection);
const option = new HttpServerOption();
option.listen = environment.httpServerConfig.listen;
option.globalAdvice = new GlobalAdvice();
option.requestEndPoints = [new RequestLogEndPoint()];
option.closeEndPoints = [new CloseLogEndPoint()];
option.errorEndPoints = [new ErrorLogEndPoint()];
const using = [
AnonServiceServer, AuthServiceServer,
LiveServiceServer, AuthMsgServiceServer,
AuthPetServiceServer, MyServiceServer,
AnonPetServiceServer
];
const resourceFilter = new ResourceFilter(environment.frontDistPath,
['\.js$', '\.map$', '\.ico$', '\.png$', '\.jpg$', '\.jpeg$', '\.gif$', 'offline\.html$', 'webmanifest$', 'manifest\.json', 'service-worker\.js$']
);
option.filters = [
new ThrowFilter(new NotFoundError()),
resourceFilter,
new SSRFilter({
frontDistPath: environment.frontDistPath,
factorySimFrontOption: (window: any) => MakeSimFrontOption(window),
factory: Factory,
poolOption: {
max: 50,
min: 1,
},
using,
domExcludes: [Connection, EntityManager, EntityManagerFactory]
}, otherInstanceSim),
SecurityFilter,
IntentFilter,
];
const ssr = new SimpleBootHttpSSRServer(IndexRouter, option);
ssr.run(otherInstanceSim);
return ssr;
}).then(it => {
console.log('server startUp finish!!', it.option.listen);
});
export const MakeSimFrontOption = (window: any) : SimFrontOption => {
return new SimFrontOption(window).setUrlType(UrlType.path);
}
class Factory extends SimpleBootHttpSSRFactory {
factory(simFrontOption: SimFrontOption, using: ConstructorType<any>[] = [], domExcludes: ConstructorType<any>[] = []): Promise<SimpleBootFront> {
const simpleBootFront = new SimpleBootFront(IndexRouterComponent, simFrontOption);
simpleBootFront.domRendoerExcludeProxy.push(Subject, Observable, Subscription, ...domExcludes);
return Promise.resolve(simpleBootFront);
}
}
export default new Factory();
FAQs
front end SPA frameworks SSR
The npm package simple-boot-http-ssr receives a total of 0 weekly downloads. As such, simple-boot-http-ssr popularity was classified as not popular.
We found that simple-boot-http-ssr demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.