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

medisot-base-server

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

medisot-base-server - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

6

History.md

@@ -0,1 +1,7 @@

1.0.1 / 2020-03-23
===================
* [BUG] Main file fixed in package json
* Updating **declaration file** and adding typings to package.json
1.0.0 / 2020-03-23

@@ -2,0 +8,0 @@ ===================

18

lib/index.d.ts
import { Cluster } from "cluster";
import { Container } from "inversify";
import { IBaseServer } from "./models/IBaseServer";
declare module 'medisot-base-server' {
const IBaseServer: IBaseServer;
class BaseServer {
constructor(appFactory: (app: Express.Application, cluster: Cluster) => Express.Application, container: Container, serverConfig: (app: Express.Application) => void);
run(): void;
}
namespace BaseServer {}
var _BaseServer: BaseServer;
export { IBaseServer, BaseServer }
}
declare class BaseServer {
constructor(appFactory: (app: Express.Application, cluster: Cluster) => Express.Application, container: Container, serverConfig: (app: Express.Application) => void);
run(): void;
}
export default BaseServer
{
"name": "medisot-base-server",
"version": "1.0.0",
"version": "1.0.1",
"description": "Helps create an inversify express application that utilises all the cores of the CPU",
"main": "index.js",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {

@@ -7,0 +8,0 @@ "test": "echo \"Error: no test specified\" && exit 1",

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