File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ async function formatData (dataArray) {
120
120
}
121
121
}
122
122
123
- async function main ( ) { // eslint-disable-line no-unused-vars
123
+ async function main ( ) {
124
124
( program
125
125
. name ( 'hyper-recent' )
126
126
. description ( 'A CLI to do hyper-recent feed analysis' )
@@ -150,3 +150,5 @@ async function main () { // eslint-disable-line no-unused-vars
150
150
151
151
await program . parseAsync ( ) ;
152
152
}
153
+
154
+ main ( ) ;
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env node
2
2
import _ from 'lodash' ;
3
3
import fs from 'fs' ;
4
+ import { writeFile } from 'fs/promises' ;
4
5
import { format , sub } from 'date-fns' ;
5
6
import { download } from './download.js' ;
6
7
import { Search } from './search.js' ;
7
- import { writeFormattedJSON } from './cli.js' ;
8
8
9
9
/**
10
10
* Download preprint data from BiorXiv and MedrXiv servers and perform search for preprints in each topic.
11
11
* @returns {collection }, a JSON array of search results for each set topic.
12
12
*/
13
13
export async function getData ( ) {
14
+ const formatJSON = obj => JSON . stringify ( obj , null , 2 ) ;
15
+ const writeFormattedJSON = async ( obj , file ) => await writeFile ( file , formatJSON ( obj ) ) ;
16
+
14
17
// Set dates for past month
15
18
const now = new Date ( ) ;
16
19
const startOffset = { months : 1 } ;
You can’t perform that action at this time.
0 commit comments