@resolve-js/runtime-single-process

The reSolve framework's single NodeJS process runtime.

Usage no npm install needed!

<script type="module">
  import resolveJsRuntimeSingleProcess from 'https://cdn.skypack.dev/@resolve-js/runtime-single-process';
</script>

README

@resolve-js/runtime-single-process

npm version

This package contains a runtime backend server that targets a standalone server or local machine.

Available Options

You can specify the following options to configure the runtime:

  • importMode- Specifies whether to use static or dynamic imports between the application's modules.
  • host - Specifies the network host on which to listen for connections. Defaults to '0.0.0.0'.
  • port - Specifies the server application's port.

Usage

// config.prod.js
const prodConfig = {
  runtime: {
    module: '@resolve-js/runtime-single-process',
    options: {
      host: declareRuntimeEnv('HOST', 'localhost'),
      port: declareRuntimeEnv('PORT', '3000'),
    },
  },
  ...
}

Analytics