gitstars icon indicating copy to clipboard operation
gitstars copied to clipboard

Github Starred Repositories Manager

Results 17 gitstars issues
Sort by recently updated
recently updated
newest added

Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. Changelog Sourced from async's changelog. v2.6.4 Fix potential prototype pollution exploit (#1828) Commits c6bdaca Version 2.6.4 8870da9 Update built files 4df6754 update changelog 8f7f903...

dependencies

就是搜索tagA和tagB的交集

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

add docker 支持. 基础镜像:node:16.14.0 nginx:1.21.6-alpine 参考:https://cli.vuejs.org/zh/guide/deployment.html#docker-nginx

Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.5 to 1.14.8. Commits 3d81dc3 Release version 1.14.8 of the npm package. 62e546a Drop confidential headers across schemes. 2ede36d Release version 1.14.7 of the npm package. 8b347cb...

dependencies

Bumps [shelljs](https://github.com/shelljs/shelljs) from 0.7.8 to 0.8.5. Release notes Sourced from shelljs's releases. v0.8.5 This was a small security fix for #1058. v0.8.4 Small patch release to fix a circular dependency...

dependencies

Bumps [axios](https://github.com/axios/axios) from 0.17.1 to 0.21.2. Release notes Sourced from axios's releases. v0.21.2 0.21.2 (September 4, 2021) Fixes and Functionality: Updating axios requests to be delayed by pre-emptive promise creation...

dependencies

首先感谢Monine做了这样的一个工具,处理了多客户端场景下面对众多github star项目的管理问题。 今天我查找了关于github star manager的工具,趁有时间记下一些反馈: (1)我最渴望的新功能是,“与github无缝接合”地使用gitstars。 (2)但我并不了解Monine在gitstars的实现中设计了哪些详细的业务逻辑,因此恐怕不能提出更具体的建议了。 (3)新功能的需求来自github和gitstars的使用操作。gitstars上无法检索新项目,因为它们不在manager的范围内。因此我总是得进行两步操作:先在github上star或fork项目,然后切换到gitstars上给新项目添加标签。 另外,我发现在github中我的star为144,而在gitstars中显示我全部数目为142。但这个疑问我没有足够的时间去检查其中的差数是哪些项目。

我测过了,这段代码可以 ``` const astralData={} const tags = Object.keys(astralData).reduce((result, key) => { return [...result, ...astralData[key].tags.map(t => t)] }, []).filter((value, index, self) =>{ return self.findIndex(t=>t.name===value.name) === index; }) const result = {...

我 star 的项目有2000多个,第一次打开的时候,需要请求20多个 GitHub 的 API([https://api.github.com/users/zqhong/starred](https://api.github.com/users/zqhong/starred))。一个请求大概需要1.5秒,20个请求就是30秒。 建议按需加载。