bem-techs-core
Version:
Core bem tech modules
39 lines (28 loc) • 809 B
Markdown
# Bem Core Tech Modules
[](https://travis-ci.org/bem/bem-techs-core)
A set of core technology modules not included in [bem-tools](https://github.com/bem/bem-tools) distribution.
## Technologies included
* bemhtml;
* bemtree;
* vanilla.js;
* node.js;
* browser.js;
* browser.js+bemhtml;
* html;
* md;
## Usage
1. Install via `npm`:
```
npm install bem-techs-core
```
2. Configure your `level.js` to use technologies from a package:
```javascript
var coreTechs = require('bem-techs-core');
exports.getTechs = function() {
return {
//your setup code
'bemhtml': coreTechs.resolveTech('bemhtml'),
'vanilla.js': coreTechs.resolveTech('vanilla.js')
};
};
```