New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

simple-boot-http-ssr

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-boot-http-ssr

front end SPA frameworks SSR

  • 1.0.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-87.5%
Maintainers
1
Weekly downloads
 
Created
Source

SIMPLE-BOOT-HTTP-SSR

SSR web server

  • simple-boot-front + simple-boot-http-server

dependencies

  • simple-boot-front typescript
  • simple-boot-http-server typescript

😃 examples

frontend

const using = [
    AnonServiceFront, AuthServiceFront,
    LiveServiceFront, AuthMsgServiceFront,
    AuthPetServiceFront, MyServiceFront,
    AnonPetServiceFront
];
Factory.create(MakeSimFrontOption(window), using).then(it => {
    it.run()
});

server

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);
});

common

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();

Keywords

FAQs

Package last updated on 19 Jul 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc