mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 21:17:36 +03:00
Merge 41e7eaf931
into 9fa30483a0
This commit is contained in:
commit
9ac9dc1d97
6 changed files with 39 additions and 0 deletions
16
README.md
16
README.md
|
@ -265,6 +265,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.
|
||||
- [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
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
import * as cheerio from 'cheerio';
|
||||
import getAxiosInstance from '../utils/getAxiosInstance.js';
|
||||
import AppError from '../utils/AppError.js';
|
||||
import { basename } from '../utils/misc.js'
|
||||
|
||||
////////////////////////////////////////////////////////
|
||||
// FUNCTION
|
||||
|
@ -62,3 +63,7 @@ const fetcher = async (
|
|||
// EXPORTS
|
||||
////////////////////////////////////////////////////////
|
||||
export default fetcher;
|
||||
|
||||
if (process.argv.length == 3 && basename(process.argv[1]) == 'fetcher.js') {
|
||||
console.log(await fetcher(process.argv[2]))
|
||||
}
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
import AppError from '../utils/AppError.js';
|
||||
import { quetrefy } from '../utils/urlModifiers.js';
|
||||
import fetcher from './fetcher.js';
|
||||
import { basename } from '../utils/misc.js'
|
||||
|
||||
////////////////////////////////////////////////////////
|
||||
// FUNCTION
|
||||
|
@ -91,3 +92,7 @@ const getAnswers = async (slug, lang) => {
|
|||
// EXPORTS
|
||||
////////////////////////////////////////////////////////
|
||||
export default getAnswers;
|
||||
|
||||
if (process.argv.length == 3 && basename(process.argv[1]) == 'getAnswers.js') {
|
||||
console.log(JSON.stringify(await getAnswers(process.argv[2])))
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
import AppError from '../utils/AppError.js';
|
||||
import { quetrefy } from '../utils/urlModifiers.js';
|
||||
import fetcher from './fetcher.js';
|
||||
import { basename } from '../utils/misc.js'
|
||||
|
||||
////////////////////////////////////////////////////////
|
||||
// HELPER FUNCTIONS
|
||||
|
@ -219,3 +220,7 @@ const getProfile = async (slug, lang) => {
|
|||
// EXPORTS
|
||||
////////////////////////////////////////////////////////
|
||||
export default getProfile;
|
||||
|
||||
if (process.argv.length == 3 && basename(process.argv[1]) == 'getProfile.js') {
|
||||
console.log(await getProfile(process.argv[2]))
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
import AppError from '../utils/AppError.js';
|
||||
import { quetrefy } from '../utils/urlModifiers.js';
|
||||
import fetcher from './fetcher.js';
|
||||
import { basename } from '../utils/misc.js'
|
||||
|
||||
////////////////////////////////////////////////////////
|
||||
// FUNCTION
|
||||
|
@ -63,3 +64,7 @@ const getTopic = async (slug, lang) => {
|
|||
// EXPORTS
|
||||
////////////////////////////////////////////////////////
|
||||
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