Obsidian HTTP Request is a helper library that allows you to download assets and make HTTP requests either directly or through a proxy (to avoid CORS issues, for example when using images from an other domain with a canvas).
To install Obsidian HTTP Request run the following command:
npm install obsidian-http-request
You can find the library documentation at the following address:
const httpRequest = require("obsidian-http-request");
httpRequest.getText("http://example.com/hello.txt")
.then(function(result) {
console.log(result);
})
.catch(function(error) {
console.error(error);
});
如果您有任何问题,您可以:
如果您发现了 bug,请在 Github 上开一个 issue,并提供尽可能多的信息。
在开始开发新功能之前,请考虑先提交一个 bug。这将允许我们讨论最佳的实现方式。当然,如果您只是想修复一些拼写错误或代码中的小错误,这就不是必要的了。
要检查代码风格,运行以下命令:
pnpm lint
如果您是项目贡献者,请确保在提交代码之前运行此命令并修复任何 lint 错误。
注意: 我们使用 ESLint 的扁平配置系统。如果您需要修改 lint 规则,请编辑 eslint.config.js
文件。
要运行测试,使用以下命令:
npm test
-
[NEXT] (master 分支上尚未发布的更改):
- 移除了
q
依赖,重构为使用原生 Promises - 更新了所有相关代码和测试以使用原生 Promises
- 移除了 Grunt,使用更简单的方式进行测试和代码检查
- 移除了
-
v1.5.2:
- 用 mocha-headless-chrome 替换了已弃用的 mocha-phantomjs 来运行测试 (@jbghoul, 27)
- 修复: 添加了缺失的 lodash 依赖 (@jbghoul, #28)
-
v1.5.1:
- Updated dependencies (@jbghoul, #26)
-
v1.5.0:
- Add a method to get the result as Blob (#20)
-
v1.4.0:
- Adds status code and message in Error objects (#19)
-
v1.3.2:
- Accepts 2xx HTTP status code and not only 200 (client side)
-
v1.3.1:
- Proxy do not returns an error anymore when server respond with 2xx stvatus code (#14)
-
v1.3.0:
- Log URLs in error messages
-
v1.2.0:
- Generic
request
andrequestProxy
method (to be able to use different methods than GET, with more options) #6 - Proxyfied methods can now be used with relative links
- Better documentation
- Generic
-
v1.1.4:
- Updates dependencies