@docfy/core
v0.8.0
Published
The core components of Docfy, a documentation site builder
Downloads
6,662
Readme
@docfy/core
The core components of Docfy, a documentation site builder.
Compatibility
- Node.js v10 or above
Installation
npm install @docfy/core
# or
yarn add @docfy/core
Usage
const Docfy = require('@docfy/core').default;
const path = require('path');
new Docfy()
.run([
{
root: path.join(__dirname, 'docs'),
urlPrefix: 'docs',
pattern: '**/*.md'
}
])
.then((result) => {
console.log(result);
});
Refer to the documentation site.
License
This project is licensed under the MIT License.