mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-04 13:37:39 +03:00
Add development helpers
This commit is contained in:
parent
de828d07a9
commit
41e7eaf931
6 changed files with 39 additions and 0 deletions
16
README.md
16
README.md
|
@ -250,6 +250,22 @@ Following extensions can be used to automatically redirect Quora URLs to Quetre:
|
||||||
- [digitalblossom/alternative-frontends](https://github.com/digitalblossom/alternative-frontends): contains other alternative front-ends.
|
- [digitalblossom/alternative-frontends](https://github.com/digitalblossom/alternative-frontends): contains other alternative front-ends.
|
||||||
- [mendel5/alternative-front-ends](https://github.com/mendel5/alternative-front-ends): a bit more general, containing alternative clients too.
|
- [mendel5/alternative-front-ends](https://github.com/mendel5/alternative-front-ends): a bit more general, containing alternative clients too.
|
||||||
|
|
||||||
|
### Development Helpers
|
||||||
|
|
||||||
|
Running any one of:
|
||||||
|
|
||||||
|
- `/fetchers/fetcher.js`
|
||||||
|
|
||||||
|
- `/fetchers/getAnswers.js`
|
||||||
|
|
||||||
|
- `/fetchers/getProfile.js`
|
||||||
|
|
||||||
|
- `/fetchers/getTopic.js`
|
||||||
|
|
||||||
|
with `node` and an argument will log the returned data to console. For example:
|
||||||
|
|
||||||
|
- `node fetchers/fetcher.js What-is-the-Linux-Web-Hosting`
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
import * as cheerio from 'cheerio';
|
import * as cheerio from 'cheerio';
|
||||||
import axiosInstance from '../utils/axiosInstance.js';
|
import axiosInstance from '../utils/axiosInstance.js';
|
||||||
import AppError from '../utils/AppError.js';
|
import AppError from '../utils/AppError.js';
|
||||||
|
import { basename } from '../utils/misc.js'
|
||||||
|
|
||||||
////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////
|
||||||
// FUNCTION
|
// FUNCTION
|
||||||
|
@ -52,3 +53,7 @@ const fetcher = async resourceStr => {
|
||||||
// EXPORTS
|
// EXPORTS
|
||||||
////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////
|
||||||
export default fetcher;
|
export default fetcher;
|
||||||
|
|
||||||
|
if (process.argv.length == 3 && basename(process.argv[1]) == 'fetcher.js') {
|
||||||
|
console.log(await fetcher(process.argv[2]))
|
||||||
|
}
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
// import log from '../utils/log.js';
|
// import log from '../utils/log.js';
|
||||||
import AppError from '../utils/AppError.js';
|
import AppError from '../utils/AppError.js';
|
||||||
import fetcher from './fetcher.js';
|
import fetcher from './fetcher.js';
|
||||||
|
import { basename } from '../utils/misc.js'
|
||||||
|
|
||||||
////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////
|
||||||
// FUNCTION
|
// FUNCTION
|
||||||
|
@ -88,3 +89,7 @@ const getAnswers = async slug => {
|
||||||
// EXPORTS
|
// EXPORTS
|
||||||
////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////
|
||||||
export default getAnswers;
|
export default getAnswers;
|
||||||
|
|
||||||
|
if (process.argv.length == 3 && basename(process.argv[1]) == 'getAnswers.js') {
|
||||||
|
console.log(JSON.stringify(await getAnswers(process.argv[2])))
|
||||||
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////
|
||||||
import AppError from '../utils/AppError.js';
|
import AppError from '../utils/AppError.js';
|
||||||
import fetcher from './fetcher.js';
|
import fetcher from './fetcher.js';
|
||||||
|
import { basename } from '../utils/misc.js'
|
||||||
|
|
||||||
////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////
|
||||||
// HELPER FUNCTIONS
|
// HELPER FUNCTIONS
|
||||||
|
@ -216,3 +217,7 @@ const getProfile = async slug => {
|
||||||
// EXPORTS
|
// EXPORTS
|
||||||
////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////
|
||||||
export default getProfile;
|
export default getProfile;
|
||||||
|
|
||||||
|
if (process.argv.length == 3 && basename(process.argv[1]) == 'getProfile.js') {
|
||||||
|
console.log(await getProfile(process.argv[2]))
|
||||||
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////
|
||||||
import AppError from '../utils/AppError.js';
|
import AppError from '../utils/AppError.js';
|
||||||
import fetcher from './fetcher.js';
|
import fetcher from './fetcher.js';
|
||||||
|
import { basename } from '../utils/misc.js'
|
||||||
|
|
||||||
////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////
|
||||||
// FUNCTION
|
// FUNCTION
|
||||||
|
@ -59,3 +60,7 @@ const getTopic = async slug => {
|
||||||
// EXPORTS
|
// EXPORTS
|
||||||
////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////
|
||||||
export default getTopic;
|
export default getTopic;
|
||||||
|
|
||||||
|
if (process.argv.length == 3 && basename(process.argv[1]) == 'getTopic.js') {
|
||||||
|
console.log(await getTopic(process.argv[2]))
|
||||||
|
}
|
||||||
|
|
3
utils/misc.js
Normal file
3
utils/misc.js
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
export const basename = (path) => {
|
||||||
|
return path.split('/').reverse()[0];
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue