Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules/
lib/
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,27 @@

# Service Registry

A simple service registry/IoC container for Node.js with TypeScript support.

## Installation

`npm install --save https://github.com/bigbadweb/service-registry.git`

## TypeScript Support

This module is written in TypeScript and includes type definitions. TypeScript users get full IntelliSense and type checking:

```typescript
import services from '@bigbadweb/service-registry';
// or
import { Services } from '@bigbadweb/service-registry';

// Create a custom instance
const myServices = new Services();
```

## Usage

_services/index.js_
```services/index.js

Expand Down
Loading