Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nodeswork/kiws

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nodeswork/kiws - npm Package Compare versions

Comparing version 0.0.9 to 0.0.10

2

dist/bootstrap.d.ts
/**
* Bootstrap series modules.
*/
export declare function bootstrap(nwModel?: any, options?: {
export declare function bootstrap(modules: any | any[], options?: {
noStart?: boolean;
}): void;

@@ -10,7 +10,8 @@ "use strict";

*/
function bootstrap(nwModel, options = {}) {
function bootstrap(modules, options = {}) {
if (options.noStart) {
process.env[constants_1.constants.env.NO_SERVER] = 'true';
}
const modules = _.filter([nwModel, modules_1.CoreModule], (x) => x);
modules = _.flatten([modules]);
modules.push(modules_1.CoreModule);
for (const m of modules) {

@@ -17,0 +18,0 @@ m.$register();

{
"name": "@nodeswork/kiws",
"version": "0.0.9",
"version": "0.0.10",
"description": "Koa-based Injectable Web Service",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet

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