# Top-level Exports

* [bind](bind.md)
* [singleton](singleton.md)
* [use](use.md)
* [make](make.md)

# Importing

#### ES6
```js
import Ioc from 'b-ioc';
// or
import { use, bind, singleton, make } from 'b-ioc';
```

#### ES5

```js
var Ioc = require('b-ioc');
```
