-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a CLI client #33
Comments
Please:) I want to create an ebook from around 2000 chapters, it’s really not possible to do it by hand :( Can you give me some pointers on how to make a PR for a CLI interface? |
The server will not accept requests with more than 50 books - so you'd need to run the server on your own machine to make that work. Once you have your own server running and tweaked to not have the 50 book limit you could set the Then you could use cont EpubPress = require('epub-press-js');
const urls = [/*array of 2000 urls*/];
const ebook = EpubPress({ urls });
ebook.publish().then(() => { ebook.download() )); |
Does it support local url instead of http? |
CLIs just are the best interfaces. I can automate them and integrate the service into bigger scripts, or just it interactively on any device regardless of the browser. (iOS, cough cough.)
The text was updated successfully, but these errors were encountered: