Giter Club home page Giter Club logo

get-book's People

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

get-book's Issues

lib/index.ts: Fails to Execute on Mac OS Due to Path Issues

对于 MacOS 临时目录的环境变量不是 TEMP 而是 TMPDIR,这导致脚本不可用(无法下载具体章节),一个可用的修复如下:

diff --git a/lib/index.ts b/lib/index.ts
index b6aeb5e..c5cdb03 100644
--- a/lib/index.ts
+++ b/lib/index.ts
@@ -48,7 +48,7 @@ const delayStr = (start: number, n: number, count: number) => {
     (res, [p, d]) => res + p + d, ''
   );
 };
-const TEMP = process.env.TEMP!;
+const TEMP = process.platform === 'darwin' ? process.env.TMPDIR! : process.env.TEMP!;^M

 async function getBook(catalogue: Chapter[], bookTitle: string) {
   const books = [];

很好的工具,支持 :)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.