# Bit driver for nodejs

For more information on Bit drivers, head over this Bit's wiki page [about this
topic](https://github.com/teambit/bit/wiki/Bit-Drivers).

### Installing Bit-node.

```sh
npm install bit-js -s
```

### Requiring components

First, you need to require the bit-node module:

```js
const bit = require('bit-js');
```

After requiring the module, you can use any component from your bit.json file.

```js
const isString = bit('isString');
```

Calling component is simple :)

```js
console.log(isString('Hello World!');
```

If your component is in a box, you can use it like that:

```js
isString = bit('string/is');
```

## Contributing to Bit-node

Contributions are always welcome, no matter how large or small. Before contributing, please read the [code of conduct](CODE_OF_CONDUCT.md).

See [Contributing](CONTRIBUTING.md).

![Analytics](https://ga-beacon.appspot.com/UA-96032224-1/bit-js/readme)
