This package has been deprecated

Author message:

@nguniversal/socket-engine is deprecated and will not receive future updates. Use @nguniversal/common instead.

@nguniversal/socket-engine
TypeScript icon, indicating that this package has built-in type declarations

13.1.1 • Public • Published

Angular Universal Socket Engine

Framework and Platform agnostic Angular Universal rendering.

Deprecated

This package has been deprecated. Please use @nguniversal/common instead.

Usage Server

npm install @nguniversal/socket-engine @nguniversal/common --save

const socketEngine = require('@nguniversal/socket-engine');

// * NOTE :: leave this as require() since this file is built Dynamically from webpack
const { AppServerModuleNgFactory, LAZY_MODULE_MAP } = require('./dist/server/main');

socketEngine.startSocketEngine(AppServerModuleNgFactory);

This will the socket engine which internally hosts a TCP Socket server.
The default port is 9090 and host of localhost You may want to leave this as a plain .js file since it is so simple and to make deploying it easier, but it can be easily transpiled from Typescript.

Usage Client

Your client can be whatever language, framework or platform you like.
As long as it can connect to a TCP Socket (which all frameworks can) then you're good to go.

This example will use JS for simplicity

import * as net from 'net';

const client = net.createConnection(9090, 'localhost', () => {
  console.log('connected to SSR server');
});

client.on('data', (data) => {
  const res = JSON.parse(data.toString()) as SocketEngineResponse;
  expect(res.id).toEqual(1);
  expect(res.html).toEqual(template);
  server.close();
  done();
});

const renderOptions = {
  id: 1,
  url: '/path',
  document: '<app-root></app-root>',
} as SocketEngineRenderOptions;
client.write(JSON.stringify(renderOptions));

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @nguniversal/socket-engine

    Weekly Downloads

    1

    Version

    13.1.1

    License

    MIT

    Unpacked Size

    24.4 kB

    Total Files

    11

    Last publish

    Collaborators

    • angular
    • google-wombot