wikihow-sr
v1.0.1
Published
Search wikihow for your query!
Downloads
3
Readme
wikihow-sr
API Wrapper for https://wikihow.com/api.php
Features
- Actually maintained
- Uses async/await
Install
yarn add wikihow-sr
Usage
const search = require('wikihow-sr');
// If no results are found, it returns null.
// async/await
(async () => {
const data = await search('how to clean');
console.log(data);
})();
// .then
search('how to clean').then(console.log);
Example Output
{
id: 40273,
title: 'Clean Your Room',
language: 'en',
url: 'https://www.wikihow.com/Clean-Your-Room'
}
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
Author
wikihow-sr © Yoshida Tomio, Released under the Apache-2.0 License. Authored and maintained by 1chiSensei.
GitHub @1chiSensei