Giter VIP home page Giter VIP logo

taro-music's Introduction

taro-music

基于Taro与网易云音乐 api 开发,技术栈主要是:typescript+taro+taro-ui+redux+react-hooks,目前主要是着重小程序端的展示,主要也是借此项目强化下上述几个技术栈的使用,打造一个最佳实践项目,通过这个项目也可以帮助你快速使用Taro开发一个属于你自己的小程序,此项目会持续更新,欢迎watchstar


GitHub stars GitHub forks GitHub watchers GitHub

快速开始

注意事项

taro3.6.20 已迁移完毕,目前大多数页面可以正常运行,迁移后性能比之前的taro2.x有所提升,还有一些细节有待进一步完善,如需查看 taro2.x 版本可自行切换到feature_taro2.x该分支查看


目前已将taro的版本升级到最新版本3.6.20,确保你本地的taro-cli的版本也是这个版本,可以通过taro info查看版本号,如果不是最新的话,可以通过执行taro update self(mac或者linux前面需要加上sudo)以及taro update project进行cli与项目依赖的更新保持一致,否则将会导致项目无法正常运行,了解更多详情可查看保持 CLI 的版本与各端依赖版本一致

重要说明

推荐使用cnpm来安装依赖

安装@tarojs/cli的时候需要注意加上版本号,也就是需要按照下方说明来看下执行的命令是否正确

  如果之前有安装其他版本的@tarojs/cli,需要先全局卸载,执行下方命令,执行完后再执行下方两步
  npm uninstall -g @tarojs/cli
  rm -rf node_modules
  ---------------
  第一步
  npm install -g @tarojs/[email protected]
  or
  cnpm install -g @tarojs/[email protected]
  or
  yarn global add @tarojs/[email protected]

  第二步
  npm install
  or
  cnpm install
  or
  yarn

首先需要在 src 目录下创建一个config.ts,这样可以根据自己的需要将其替换成线上地址,接口服务是使用的NeteaseCloudMusicApi

export const baseUrl: string = 'http://localhost:3000' // 这里配置的这个url是后端服务的请求地址,示例中代表在本地启用的服务端口是3000,如果希望在真机上调试,那么就需要将后端服务部署到一个云主机上

在运行本项目前,请先确保已经全局安装了 Taro,安装可见官网指导

启动后端接口服务

git clone https://github.com/Binaryify/NeteaseCloudMusicApi.git

cd NeteaseCloudMusicApi

cnpm i

npm run start

接下来启动前端项目

git clone https://github.com/lsqy/taro-music.git

cd taro-music

cnpm i


npm run dev:weapp

功能列表

  • 用户登陆
  • 退出登陆
  • 我的关注列表
  • 我的粉丝列表
  • 我的动态列表
  • 最近播放列表
  • 我的电台
  • 我的收藏
  • 推荐歌单
  • 推荐电台
  • 推荐电台
  • 我创建的歌单列表
  • 我收藏的歌单列表
  • 共用的歌单详情列表
  • 歌曲播放页面
  • 歌词滚动
  • 歌曲切换播放模式(随机播放/单曲循环/顺序播放)
  • 切换上一首/下一首
  • 喜欢/取消喜欢某首歌曲
  • 评论列表
  • 视频播放
  • 热搜列表
  • 搜索(包含单曲/歌单/视频/歌手/专辑/电台/用户)
  • 统一的播放组件,方便进行切换页面后可以随时进入到播放页面
  • 搜索功能
  • 视频播放
  • mv 播放
  • 视频与 mv 中的评论列表

目录结构简要介绍

这里主要介绍下src目录,因为开发主要是在这个目录下进行的

- src
 - actions // `redux`中的相关异步操作在这里进行
 - assets // 静态资源目录,这里引入了所需的图片资源,以及`fontawesome`字体图标资源
 - components // 封装的项目中可复用的组件,目前只是抽象了`CLoading`(加载效果组件)、`CLyric`(歌词组件)、`CMusic`(正在播放组件)、`CSlide`(滑块组件)、`CTitle`、`CUserListItem`
 - constants // 项目中的常量定义,目前定义了`typescript`的公共定义、`reducers`的名称定义、状态码的定义
 - pages // 项目中的业务页面都在这个目录中
 - reducers // `redux`中的相关同步操作在这里进行
 - services // 可复用的服务可以放在这个目录中,目前只是封装了接口请求的公共服务,可以根据自己项目的需要进行其他服务的扩充
 - store // redux的初始文件
 - utils // 可以复用的工具方法可以放到这个目录当中,目前封装了格式化、歌词解析的相关方法
  - decorators // 抽象的装饰器,主要为了解决在切换页面之后仍然可以继续保持播放状态,因为目前`taro`不支持全局组件
 - app.scss // 全局样式
 - app.tsx // 全局入口文件
 - base.scss // 基础样式
 - config.ts // 项目的全局配置,目前只是配置了`baseUrl`是后端服务的基准请求地址

todo

  • 复用的评论列表
  • 搜索功能 已完成部分功能
  • 个人主页支持跳转
  • 歌手页面
  • react-hooks重构部分功能,正在进行中

最近更新

  • 升级 taro3 完毕

效果图预览

下面简要列出几张效果图

有待完善部分

还有一些功能点以及细节都还有待进一步完善,目前先把大致主要的功能进行了下实现,当然如果发现什么问题,欢迎能够提交issues,发现之后我会及时进行更正,欢迎 starfork,感谢大家支持 🙏。

taro-music's People

Contributors

lsqy avatar ruochuan12 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

taro-music's Issues

Weekly Digest (19 January, 2020 - 26 January, 2020)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were 9 stagazers.
juneyang
mescalchuan
zlluGitHub
wenxiayili
luozb
sword007
Wayne529
charles-cai
zhangxu19830126
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

Weekly Digest (24 November, 2019 - 1 December, 2019)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were 19 stagazers.
winwinme
dwanda
sansx
ByKeHen
JadeGeek
linhongzhou
liuhengloveyou
zedisdog
wangzherlf
chen-xiaoshu
514458254
Edisonhuxi
yunyi1895
spotlessbala
Qpumpkin
maqing
st4rlight
pangPython
wycfcqt
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

项目周报 (2019 年 10 月 5 日 - 2019 年 10 月 12 日)


ISSUES

上周有 1 个新 issue。
这个 issue 已经关闭。

CLOSED ISSUES

❤️ #38 fix(core): 将应用中的图片引用地址加上缩略图参数,减少图片请求时间, by lsqy


PULL REQUESTS

上周有 1 个 pull request 被创建、更新或 merge。

MERGED PULL REQUEST

上周 merge 了 1 个 pull request:

💜 #38 fix(core): 将应用中的图片引用地址加上缩略图参数,减少图片请求时间, by lsqy


COMMITS

上周共有 2 个 提交:

🛠️ Merge pull request #38 from lsqy/dev by lsqy
🛠️ fix(core): 将应用中的图片引用地址加上缩略图参数,减少图片请求时间 by lsqy


CONTRIBUTORS

上周共有 1 名独立贡献者:

👤 lsqy

感谢你们对开源事业做出的贡献。:+1:


STARGAZERS

上周获得了 26 个 star。它们分别来自于:

Joeycz | ⭐ chendongmeigithub | ⭐ fly3949 | ⭐ myncepu | ⭐ yang-1213 | ⭐ Shenxiaoy | ⭐ Plutoyer | ⭐ jimmy-woo | ⭐ Oneideals | ⭐ GlodenBoy | ⭐ wuhaidong-me | ⭐ DaDaDa12138 | ⭐ XiaoWu-5759 | ⭐ wenboLee | ⭐ tinytang | ⭐ BuleB | ⭐ aZYiming | ⭐ Lawrence51 | ⭐ zzszmyf | ⭐ petterobam | ⭐ ElvisXie | ⭐ tamert | ⭐ UniqueCrownClown | ⭐ cdadar | ⭐ AmorDiamond | ⭐ IsaacHo |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

项目周报 (2019 年 9 月 7 日 - 2019 年 9 月 14 日)


ISSUES

上周有 2 个新 issue。
2 个 issue 已经被关闭,0 个 issue 仍然保持打开状态。

CLOSED ISSUES

❤️ #31 Dev, by lsqy
❤️ #30 feat(commet): 添加评论列表, by lsqy


PULL REQUESTS

上周有 2 个 pull request 被创建、更新或 merge。

MERGED PULL REQUEST

上周 merge 了 2 个 pull request:

💜 #31 Dev, by lsqy
💜 #30 feat(commet): 添加评论列表, by lsqy


COMMITS

上周共有 7 个 提交:

🛠️ Merge pull request #31 from lsqy/dev by lsqy
🛠️ feat(home): 新增banner展示 by lsqy
🛠️ fix(core): 修改首页切换方式 by lsqy
🛠️ Update README.md by lsqy
🛠️ Update README.md by lsqy
🛠️ Merge pull request #30 from lsqy/dev by lsqy
🛠️ feat(commet): 添加评论列表 by lsqy


CONTRIBUTORS

上周共有 1 名独立贡献者:

👤 lsqy

感谢你们对开源事业做出的贡献。:+1:


STARGAZERS

上周获得了 15 个 star。它们分别来自于:

Hosing2015 | ⭐ JasonSongHoho | ⭐ forkai | ⭐ fuersite | ⭐ YvanMasterAll | ⭐ aizxin | ⭐ qqqqqqq1995 | ⭐ wbcyclist | ⭐ Damoness | ⭐ huleile | ⭐ whwzm88 | ⭐ zouzonghua | ⭐ eric8810 | ⭐ wqplay | ⭐ Windfarer |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

项目周报 (2019 年 9 月 28 日 - 2019 年 10 月 5 日)


ISSUES

上周没有新 issue。


PULL REQUESTS

上周 pull request 被创建、更新或 merge。


COMMITS

上周没有提交。


CONTRIBUTORS

上周没有贡献者.


STARGAZERS

上周获得了 20 个 star。它们分别来自于:

lq2009v | ⭐ tangkaichuan | ⭐ feijian123456 | ⭐ i-johnxz | ⭐ Razliubit | ⭐ ShuiXinSuoYu | ⭐ ZhiLing13 | ⭐ bainchao | ⭐ runME | ⭐ encountermm | ⭐ Createwj | ⭐ KorudoKyatto | ⭐ yinrongping | ⭐ alin299 | ⭐ zcgong | ⭐ katsugzj | ⭐ VincentWyin | ⭐ qq9694526 | ⭐ WenZhE0714 | ⭐ BeeDances |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

项目周报 (2019 年 7 月 27 日 - 2019 年 8 月 3 日)


ISSUES

上周没有新 issue。


PULL REQUESTS

上周 pull request 被创建、更新或 merge。


COMMITS

上周共有 18 个 提交:

🛠️ fix(doc): update by lsqy
🛠️ Update .gitattributes by lsqy
🛠️ feat(doc): update by lsqy
🛠️ fix(doc): update by lsqy
🛠️ fix(doc): update reademe by lsqy
🛠️ fix(song): remove annotation by lsqy
🛠️ doc:update img by lsqy
🛠️ fix(doc):update by lsqy
🛠️ feat(doc): update by lsqy
🛠️ feat(core): 升级依赖 by lsqy
🛠️ feat(doc): update by lsqy
🛠️ feat(screenshot): update by lsqy
🛠️ fix(core):package.json update by lsqy
🛠️ feat(music-components): 优化全局播放组件功能以及交互 by lsqy
🛠️ doc:update readme by lsqy
🛠️ feat:完善切换页面播放体验 by lsqy
🛠️ feat:播放组件update by lsqy
🛠️ fix:去除yarn.lock by lsqy


CONTRIBUTORS

上周共有 1 名独立贡献者:

👤 lsqy

感谢你们对开源事业做出的贡献。:+1:


STARGAZERS

上周获得了 46 个 star。它们分别来自于:

koppthe | ⭐ lennokiki | ⭐ HobaiRiku | ⭐ teachat8 | ⭐ tbuy | ⭐ magicdawn | ⭐ luckyadam | ⭐ wuyongyi | ⭐ dpyzo0o | ⭐ wangchi | ⭐ flitrue | ⭐ GYDSB | ⭐ bukeneng2011 | ⭐ zhangpengbin | ⭐ BinZhiZhu | ⭐ zyh9 | ⭐ lf7817 | ⭐ Luooojunnn | ⭐ Tyf2345 | ⭐ king3200 | ⭐ wenfangwen | ⭐ szy0syz | ⭐ geekape | ⭐ Fea-Sin | ⭐ dezhizhang | ⭐ leehomeok | ⭐ owen800q | ⭐ anyexinglu | ⭐ shooterRao | ⭐ EEEVO | ⭐ vf2e | ⭐ curryhh | ⭐ Tmac-1 | ⭐ james9527 | ⭐ HeMiaoQ | ⭐ mengdianliang | ⭐ chianz | ⭐ vinurs | ⭐ fanyingmao | ⭐ qingqian2 | ⭐ WangxinsHub | ⭐ chaojiangcn | ⭐ chens-hi | ⭐ xshlee | ⭐ slinloving | ⭐ gaoyanyun |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

Weekly Digest (12 January, 2020 - 19 January, 2020)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there was 1 commit.
🛠️ fix(config): update .gitignore by lsqy


CONTRIBUTORS

Last week there was 1 contributor.
👤 lsqy


STARGAZERS

Last week there were 9 stagazers.
123hehe
gudaoxuri
treeyh
ZDong0118
lanxuexing
Calvin66
MasonEast
6337215
a645162
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

Weekly Digest (2 February, 2020 - 9 February, 2020)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there was 1 commit.
🛠️ feat(doc&event): update by lsqy


CONTRIBUTORS

Last week there was 1 contributor.
👤 lsqy


STARGAZERS

Last week there were 8 stagazers.
JeffCX
lbb1811
liwei352
peng-yin
imkerberos
xshans
cooliean
hmsjy2017
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

Weekly Digest (26 January, 2020 - 2 February, 2020)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there was 1 commit.
🛠️ docs(readme): update by lsqy


CONTRIBUTORS

Last week there was 1 contributor.
👤 lsqy


STARGAZERS

Last week there were 2 stagazers.
fmfmfmfm
KISSMonX
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

Weekly Digest (23 March, 2020 - 30 March, 2020)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were 4 commits.
🛠️ feat(template): 新增issue_template by lsqy
🛠️ refactor(events): use react-hooks by lsqy
🛠️ refactor(myfans): react hooks by lsqy
🛠️ refactor(myfans): react hooks by lsqy


CONTRIBUTORS

Last week there was 1 contributor.
👤 lsqy


STARGAZERS

Last week there were 17 stagazers.
micrologic
Qiluzz
cuteSophia
nclvvp4444
xuexirong
qiwang97
zhy58
lisztj
beijibeijing
LoverJoker
yay2008
Overcase
ichingsoft
huangzonggui
Cheungbass
codiy1992
xchsp
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

项目周报 (2019 年 11 月 2 日 - 2019 年 11 月 9 日)


ISSUES

上周没有新 issue。


PULL REQUESTS

上周 pull request 被创建、更新或 merge。


COMMITS

上周没有提交。


CONTRIBUTORS

上周没有贡献者.


STARGAZERS

上周获得了 17 个 star。它们分别来自于:

shenjianbo | ⭐ WonlyCms | ⭐ itxcc | ⭐ hepinting | ⭐ gjqiang | ⭐ lcnxx | ⭐ xuhezhuo | ⭐ leonmin | ⭐ rolitter | ⭐ hellowHuaairen | ⭐ zeeeek | ⭐ 986244073 | ⭐ SparkingLemon | ⭐ hardestHu | ⭐ yuan252525 | ⭐ youlookwhat | ⭐ lypdev |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

Weekly Digest (5 January, 2020 - 12 January, 2020)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were 12 stagazers.
codlin
Guoslxx
pepperdog999
haotian2546
zk8080
Lry0504
xiaowenele
hellowHuaairen
cgwxyz
amColinzzz
monkeyDledger
lyzMaster
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

项目周报 (2019 年 10 月 26 日 - 2019 年 11 月 2 日)


ISSUES

上周有 2 个新 issue。
1 个 issue 已经被关闭,1 个 issue 仍然保持打开状态。

OPEN ISSUES

💚 #44 请问现在支持RN吗, by winyluo

CLOSED ISSUES

❤️ #43 Dev, by lsqy


PULL REQUESTS

上周有 1 个 pull request 被创建、更新或 merge。

MERGED PULL REQUEST

上周 merge 了 1 个 pull request:

💜 #43 Dev, by lsqy


COMMITS

上周共有 2 个 提交:

🛠️ Merge pull request #43 from lsqy/dev by lsqy
🛠️ fix(index): 首页卡片样式优化 by lsqy


CONTRIBUTORS

上周共有 1 名独立贡献者:

👤 lsqy

感谢你们对开源事业做出的贡献。:+1:


STARGAZERS

上周获得了 15 个 star。它们分别来自于:

JunVincetHuo | ⭐ LuckyCrystalM | ⭐ kingyang | ⭐ HellKingdom | ⭐ tinico | ⭐ PeppaPig2000 | ⭐ steveny-l | ⭐ SweetyPeng | ⭐ ModyQyW | ⭐ Zhou-Bill | ⭐ hacker-looper | ⭐ Hiddensu | ⭐ AbsenceSliet | ⭐ KunsongZhou | ⭐ jackyu0915 |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

项目周报 (2019 年 8 月 3 日 - 2019 年 8 月 10 日)


ISSUES

上周有 2 个新 issue。
0 个 issue 已经被关闭,2 个 issue 仍然保持打开状态。

OPEN ISSUES

💚 #11 手机号登陆, by chaojiangcn
💚 #10 严重存在大图缩放显示, by CalmHarbin


PULL REQUESTS

上周 pull request 被创建、更新或 merge。


COMMITS

上周共有 2 个 提交:

🛠️ feat(search): 开展功能实现 by lsqy
🛠️ fix(core): remove unuse by lsqy


CONTRIBUTORS

上周共有 1 名独立贡献者:

👤 lsqy

感谢你们对开源事业做出的贡献。:+1:


STARGAZERS

上周获得了 17 个 star。它们分别来自于:

9plus | ⭐ fupeng | ⭐ myoula | ⭐ hanyueqiang | ⭐ venliong | ⭐ xiaoxiaodemeng | ⭐ jl7112 | ⭐ elliot-cj | ⭐ cklwblove | ⭐ zhangshichuan | ⭐ zcfsmile | ⭐ TechXBusiness | ⭐ guoanqingweb | ⭐ HaveF | ⭐ hotblin | ⭐ zzlit | ⭐ ImproperMelon |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

Weekly Digest (14 November, 2019 - 21 November, 2019)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week 1 issue was created.
It is still open.

OPEN ISSUES

💚 #49 项目周报 (2019 年 11 月 9 日 - 2019 年 11 月 16 日), by taro-bot[bot]

NOISY ISSUE

🔈 #49 项目周报 (2019 年 11 月 9 日 - 2019 年 11 月 16 日), by taro-bot[bot]
It received 1 comments.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were 15 stagazers.
wubaiqing
Evandoz
xiangyuisabatman
Logistic98
chris-fung
shiyeZhang
ChaosXWL
872409
yanglvyou
dodofun
messiaqin
zyzhangyu
xhao7758
UriChen
snailsph
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

项目周报 (2019 年 8 月 24 日 - 2019 年 8 月 31 日)


ISSUES

上周有 6 个新 issue。
6 个 issue 已经被关闭,0 个 issue 仍然保持打开状态。

CLOSED ISSUES

❤️ #25 Dev, by lsqy
❤️ #24 Dev, by lsqy
❤️ #23 Dev, by lsqy
❤️ #22 Merge pull request #21 from lsqy/dev, by lsqy
❤️ #21 feat(search): 搜索功能完善、加入视频播放, by lsqy
❤️ #20 feat(search): 完善历史搜索记录, by lsqy


PULL REQUESTS

上周有 6 个 pull request 被创建、更新或 merge。

MERGED PULL REQUEST

上周 merge 了 6 个 pull request:

💜 #25 Dev, by lsqy
💜 #24 Dev, by lsqy
💜 #23 Dev, by lsqy
💜 #22 Merge pull request #21 from lsqy/dev, by lsqy
💜 #21 feat(search): 搜索功能完善、加入视频播放, by lsqy
💜 #20 feat(search): 完善历史搜索记录, by lsqy


COMMITS

上周共有 16 个 提交:

🛠️ Update README.md by lsqy
🛠️ Merge pull request #25 from lsqy/dev by lsqy
🛠️ feat(search): update by lsqy
🛠️ feat(search): update by lsqy
🛠️ Merge pull request #24 from lsqy/dev by lsqy
🛠️ feat(search): update by lsqy
🛠️ feat(search): update by lsqy
🛠️ feat(search): update by lsqy
🛠️ Merge pull request #23 from lsqy/dev by lsqy
🛠️ Merge pull request #22 from lsqy/master by lsqy
🛠️ feat(search): update by lsqy
🛠️ Merge pull request #21 from lsqy/dev by lsqy
🛠️ Merge branch 'master' into dev by lsqy
🛠️ feat(search): 搜索功能完善、加入视频播放 by lsqy
🛠️ Merge pull request #20 from lsqy/dev by lsqy
🛠️ feat(search): 完善历史搜索记录 by lsqy


CONTRIBUTORS

上周共有 1 名独立贡献者:

👤 lsqy

感谢你们对开源事业做出的贡献。:+1:


STARGAZERS

上周获得了 7 个 star。它们分别来自于:

goeswind | ⭐ cothong | ⭐ kkk0406 | ⭐ xian107 | ⭐ louisian | ⭐ richturkey | ⭐ itxcc |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

项目周报 (2019 年 8 月 10 日 - 2019 年 8 月 17 日)


ISSUES

上周有 4 个新 issue。
3 个 issue 已经被关闭,1 个 issue 仍然保持打开状态。

OPEN ISSUES

💚 #15 优化播放逻辑, by lsqy

CLOSED ISSUES

❤️ #16 Dev, by lsqy
❤️ #14 feat(search): 完成部分搜索功能, by lsqy
❤️ #13 Dev, by lsqy


PULL REQUESTS

上周有 3 个 pull request 被创建、更新或 merge。

MERGED PULL REQUEST

上周 merge 了 3 个 pull request:

💜 #16 Dev, by lsqy
💜 #14 feat(search): 完成部分搜索功能, by lsqy
💜 #13 Dev, by lsqy


COMMITS

上周共有 13 个 提交:

🛠️ feat(doc): update by lsqy
🛠️ feat(doc): add screenshot by lsqy
🛠️ feat(doc): update by lsqy
🛠️ Merge pull request #16 from lsqy/dev by lsqy
🛠️ feat(doc): 更新readme by lsqy
🛠️ feat(search): fix搜索按钮颜色 by lsqy
🛠️ feat(core): 搜索新增loading效果 by lsqy
🛠️ feat(search): 完善搜索功能以及播放组件显示 by lsqy
🛠️ Merge pull request #14 from lsqy/dev by lsqy
🛠️ feat(search): 完成部分搜索功能 by lsqy
🛠️ Merge pull request #13 from lsqy/dev by lsqy
🛠️ feat(search): update by lsqy
🛠️ feat(search): 开展搜索功能 by lsqy


CONTRIBUTORS

上周共有 1 名独立贡献者:

👤 lsqy

感谢你们对开源事业做出的贡献。:+1:


STARGAZERS

上周获得了 14 个 star。它们分别来自于:

hehehai | ⭐ xungegeblue | ⭐ huangtc | ⭐ html5stu | ⭐ songshijun007 | ⭐ strawbreey | ⭐ Godzillas | ⭐ zpfang9008 | ⭐ cgsp | ⭐ czfandyslash | ⭐ qgqceo | ⭐ Hulkchan | ⭐ wkl007 | ⭐ yyccQQu |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

项目周报 (2019 年 6 月 22 日 - 2019 年 6 月 29 日)


ISSUES

上周没有新 issue。


PULL REQUESTS

上周 pull request 被创建、更新或 merge。


COMMITS

上周共有 14 个 提交:

🛠️ Merge branch 'master' of github.com:lsqy/taro-music by lsqy
🛠️ format by lsqy
🛠️ Update README.md by lsqy
🛠️ update assets by lsqy
🛠️ update assets by lsqy
🛠️ Update README.md by lsqy
🛠️ update by lsqy
🛠️ update by lsqy
🛠️ add screenshot by lsqy
🛠️ update by lsqy
🛠️ fix checkbox by lsqy
🛠️ add img by lsqy
🛠️ add img by lsqy
🛠️ update by lsqy


CONTRIBUTORS

上周共有 1 名独立贡献者:

👤 lsqy

感谢你们对开源事业做出的贡献。:+1:


STARGAZERS

上周获得了 2 个 star。它们分别来自于:

zgqq | ⭐ hnsylitao |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

项目周报 (2019 年 8 月 31 日 - 2019 年 9 月 7 日)


ISSUES

上周有 2 个新 issue。
2 个 issue 已经被关闭,0 个 issue 仍然保持打开状态。

CLOSED ISSUES

❤️ #28 feat(mv): 新增mv详情播放, by lsqy
❤️ #27 feat(video): 完善视频详情, by lsqy


PULL REQUESTS

上周有 2 个 pull request 被创建、更新或 merge。

MERGED PULL REQUEST

上周 merge 了 2 个 pull request:

💜 #28 feat(mv): 新增mv详情播放, by lsqy
💜 #27 feat(video): 完善视频详情, by lsqy


COMMITS

上周共有 5 个 提交:

🛠️ Update README.md by lsqy
🛠️ Merge pull request #28 from lsqy/dev by lsqy
🛠️ feat(mv): 新增mv详情播放 by lsqy
🛠️ Merge pull request #27 from lsqy/dev by lsqy
🛠️ feat(video): 完善视频详情 by lsqy


CONTRIBUTORS

上周共有 1 名独立贡献者:

👤 lsqy

感谢你们对开源事业做出的贡献。:+1:


STARGAZERS

上周获得了 15 个 star。它们分别来自于:

RonLiu36 | ⭐ timelessover | ⭐ royswale | ⭐ shmilyin | ⭐ confirmeyes | ⭐ arlin123 | ⭐ Highflyer | ⭐ mickeyooo | ⭐ chengxulvtu | ⭐ peakyu0739 | ⭐ xxnjdlys | ⭐ duguyining | ⭐ lxfriday | ⭐ teng-z | ⭐ WGL878420 |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

Weekly Digest (23 February, 2020 - 1 March, 2020)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there was 1 commit.
🛠️ fix(optimize): no-array-index-key by lsqy


CONTRIBUTORS

Last week there was 1 contributor.
👤 lsqy


STARGAZERS

Last week there were 10 stagazers.
feixian
cnscorpions
cosyer
fang0814
absonczc
huanghonghao
lelouch0823
chinory
chenyongze
zhoufangy
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

项目周报 (2019 年 7 月 20 日 - 2019 年 7 月 27 日)


ISSUES

上周没有新 issue。


PULL REQUESTS

上周 pull request 被创建、更新或 merge。


COMMITS

上周没有提交。


CONTRIBUTORS

上周没有贡献者.


STARGAZERS

上周获得了 1 个 star。它们分别来自于:

Chant-Lee |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

项目周报 (2019 年 8 月 17 日 - 2019 年 8 月 24 日)


ISSUES

上周有 1 个新 issue。
这个 issue 已经关闭。

CLOSED ISSUES

❤️ #18 Dev, by lsqy


PULL REQUESTS

上周有 1 个 pull request 被创建、更新或 merge。

MERGED PULL REQUEST

上周 merge 了 1 个 pull request:

💜 #18 Dev, by lsqy


COMMITS

上周共有 4 个 提交:

🛠️ Update README.md by lsqy
🛠️ Merge pull request #18 from lsqy/dev by lsqy
🛠️ feat(search): 搜索功能完善 by lsqy
🛠️ feat(search): 搜索功能完善 by lsqy


CONTRIBUTORS

上周共有 1 名独立贡献者:

👤 lsqy

感谢你们对开源事业做出的贡献。:+1:


STARGAZERS

上周获得了 8 个 star。它们分别来自于:

wang-qingqing | ⭐ yanwenjia | ⭐ vivan1122 | ⭐ mzdsxgl | ⭐ chenwangji | ⭐ guananny2 | ⭐ beimuaihui | ⭐ nanlei2000 |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

Weekly Digest (29 December, 2019 - 5 January, 2020)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week 2 issues were created.
Of these, 0 issues have been closed and 2 issues are still open.

OPEN ISSUES

💚 #85 页面样式未生效, by TangTangJia
💚 #84 Can't npm run dev:weapp, throw Uncaught TypeError: Function(...) is not a function., by Eric-Zhong


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were 11 stagazers.
liuhuyu
anhengchangyua
recordque
WuDevin
Eric-Zhong
ZhangMingZhao1
racall
Nirongxu
liulinboyi
AllenBei
vocoWone
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

Weekly Digest (13 March, 2020 - 20 March, 2020)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were 6 commits.
🛠️ docs(readme): update by lsqy
🛠️ refactor(myfocus): hooks重构我的关注页 by lsqy
🛠️ feat(components): 现有组件改写为hooks形式 by lsqy
🛠️ fix(clyric): 新增函数式组件defaultProps by lsqy
🛠️ feat(hook): 改造CLoading与CLyric为函数式组件 by lsqy
🛠️ feat(core): 升级taro依赖版本2.0.6 by lsqy


CONTRIBUTORS

Last week there was 1 contributor.
👤 lsqy


STARGAZERS

Last week there were 9 stagazers.
JoernLee
SugarHeartEgg
qiujz
JesBrian
lsqy
yhzlove
luweiCN
jun12342012
nmsn
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

项目周报 (2019 年 10 月 19 日 - 2019 年 10 月 26 日)


ISSUES

上周没有新 issue。


PULL REQUESTS

上周 pull request 被创建、更新或 merge。


COMMITS

上周没有提交。


CONTRIBUTORS

上周没有贡献者.


STARGAZERS

上周获得了 13 个 star。它们分别来自于:

mengQ99 | ⭐ JohnieXu | ⭐ addio | ⭐ xuebingwang | ⭐ zongyan86 | ⭐ chinawzc | ⭐ isSoda | ⭐ JackHC | ⭐ yanguoyu | ⭐ Ivanwangcy | ⭐ hellomrbigshot | ⭐ panw3i | ⭐ Feng2468339827 |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

Weekly Digest (16 February, 2020 - 23 February, 2020)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were 2 commits.
🛠️ feat(每日推荐): 开展实现逻辑 by lsqy
🛠️ feat(首页): 新增每日推荐和排行榜 by lsqy


CONTRIBUTORS

Last week there was 1 contributor.
👤 lsqy


STARGAZERS

Last week there were 10 stagazers.
iQianDuoEr
fengjiahao
chanlumin
cuttino001
hanxiaoluan
Iris19960613
satawait
edsolater
lifezhangcc
BogerHou
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

Weekly Digest (8 December, 2019 - 15 December, 2019)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week 2 issues were created.
Of these, 0 issues have been closed and 2 issues are still open.

OPEN ISSUES

💚 #79 Uncaught TypeError: Cannot read property 'charAt' of undefined, by giantss
💚 #78 Uncaught Error: module "config" is not defined 你的api.ts里面import的config.js在你的包里没有怎么办?, by caoliren


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there was 1 commit.
🛠️ Update README.md by lsqy


CONTRIBUTORS

Last week there was 1 contributor.
👤 lsqy


STARGAZERS

Last week there were 9 stagazers.
ooooooOnly
XSnowHoly
zhoucen
milimomofans
STANAPO
ryken2013
Nak9009
763139102
fmacro
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

Weekly Digest (15 December, 2019 - 22 December, 2019)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were 4 commits.
🛠️ docs(readme): add license label by lsqy
🛠️ feat(core): 新增husky对commit-msg格式做规范要求 by lsqy
🛠️ feat(core): 升级taro依赖版本2.0.0-beta.8 by lsqy
🛠️ fix word by lsqy


CONTRIBUTORS

Last week there was 1 contributor.
👤 lsqy


STARGAZERS

Last week there were 14 stagazers.
0xnu
hankewins
yanxj0
fdy696
wty625073563
iwowen
zhiyongXu
flyingzl
suxinying
dengyizhenfeng
qianyeyixia
dysl-z
dmoosocool
Leo428
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

项目周报 (2019 年 9 月 14 日 - 2019 年 9 月 21 日)


ISSUES

上周没有新 issue。


PULL REQUESTS

上周 pull request 被创建、更新或 merge。


COMMITS

上周共有 1 个 提交:

🛠️ Update README.md by lsqy


CONTRIBUTORS

上周共有 1 名独立贡献者:

👤 lsqy

感谢你们对开源事业做出的贡献。:+1:


STARGAZERS

上周获得了 8 个 star。它们分别来自于:

Luffyying | ⭐ hsuehic | ⭐ tianwing | ⭐ qqhluckyi | ⭐ taohexxx | ⭐ youhongxing | ⭐ VicenLaw | ⭐ lvxuel |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

Weekly Digest (22 December, 2019 - 29 December, 2019)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week 1 issue was created.
It is still open.

OPEN ISSUES

💚 #82 status.js内容错误, by vinurs

NOISY ISSUE

🔈 #82 status.js内容错误, by vinurs
It received 1 comments.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there was 1 commit.
🛠️ docs(my): delete no use by lsqy


CONTRIBUTORS

Last week there was 1 contributor.
👤 lsqy


STARGAZERS

Last week there were 9 stagazers.
sunnie1992
SweetBym
Feiox
snow2flying
oOBobbyOo
infinityu
AnthonyHao
caoxianwei
smileboyi
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

项目周报 (2019 年 11 月 9 日 - 2019 年 11 月 16 日)


ISSUES

上周有 2 个新 issue。
2 个 issue 已经被关闭,0 个 issue 仍然保持打开状态。

CLOSED ISSUES

❤️ #48 feat(home): 首页新增搜索, by lsqy
❤️ #47 feat(core): temporarily remove other features, by lsqy


PULL REQUESTS

上周有 2 个 pull request 被创建、更新或 merge。

MERGED PULL REQUEST

上周 merge 了 2 个 pull request:

💜 #48 feat(home): 首页新增搜索, by lsqy
💜 #47 feat(core): temporarily remove other features, by lsqy


COMMITS

上周共有 4 个 提交:

🛠️ Merge pull request #48 from lsqy/dev by lsqy
🛠️ feat(home): 首页新增搜索 by lsqy
🛠️ Merge pull request #47 from lsqy/dev by lsqy
🛠️ feat(core): temporarily remove other features by lsqy


CONTRIBUTORS

上周共有 1 名独立贡献者:

👤 lsqy

感谢你们对开源事业做出的贡献。:+1:


STARGAZERS

上周获得了 21 个 star。它们分别来自于:

gerainlotZS | ⭐ pkmq24 | ⭐ Deeyu | ⭐ Harsin1 | ⭐ leechaouser | ⭐ Clearives | ⭐ changwk | ⭐ VonJie | ⭐ chrisdeo | ⭐ qige2016 | ⭐ YunlongYang | ⭐ lulinha | ⭐ 348086239 | ⭐ ljjrhm | ⭐ Keraun | ⭐ wubaiqing | ⭐ Evandoz | ⭐ xiangyuisabatman | ⭐ Logistic98 | ⭐ chris-fung | ⭐ shiyeZhang |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

Can't npm run dev:weapp, throw Uncaught TypeError: Function(...) is not a function.

I'd clone the source code, and make the taro version as 2.0.0-beta.8. But run the command:

npm run dev:weapp

I got following error in the WeChat dev tools console.
vendors.js:10823 Uncaught TypeError: Function(...) is not a function
at Object. (vendors.js:10823)
at Object../node_modules/regenerator-runtime@0.13.3@regenerator-runtime/runtime.js (vendors.js:10825)
at webpack_require (runtime.js:80)
at Object. (vendors.js:24)
at Object../node_modules/
@[email protected]@@tarojs/async-await/index.js (vendors.js:27)
at webpack_require (runtime.js:80)
at Object../src/app.tsx (app.js:33)
at webpack_require (runtime.js:80)
at checkDeferredModules (runtime.js:46)
at Array.webpackJsonpCallback [as push] (runtime.js:33)

I run following command to check my taro info:

taro info

get this:

👽 Taro v2.0.0-beta.8

Taro CLI 2.0.0-beta.8 environment info:
System:
OS: macOS 10.14.6
Shell: 3.2.57 - /bin/bash
Binaries:
Node: 10.18.0 - ~/.nvm/versions/node/v10.18.0/bin/node
npm: 6.13.4 - ~/.nvm/versions/node/v10.18.0/bin/npm
npmPackages:
@tarojs/async-await: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/components: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/mini-runner: ^2.0.0-beta.8 => 2.0.0-beta.13
@tarojs/plugin-babel: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/plugin-csso: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/plugin-less: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/plugin-sass: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/plugin-uglifyjs: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/redux: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/redux-h5: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/router: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/taro: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/taro-alipay: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/taro-h5: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/taro-swan: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/taro-tt: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/taro-weapp: 2.0.0-beta.8 => 2.0.0-beta.8
@tarojs/webpack-runner: 2.0.0-beta.8 => 2.0.0-beta.8
eslint-config-taro: 2.0.0-beta.8 => 2.0.0-beta.8
eslint-plugin-taro: 2.0.0-beta.8 => 2.0.0-beta.8
nerv-devtools: ^1.5.6 => 1.5.6
nervjs: ^1.5.6 => 1.5.6

Are there some settings need to be config? please help, thanks.

Weekly Digest (1 December, 2019 - 8 December, 2019)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were 17 stagazers.
micln
zhaoquntao
Aliveqiao
M-G1220
tzerocode
wychmod
sharingjoin
LittleStar-JJ
jonesdp
aikeProject
linzhiyuan00
craterliang
12345laohu
jinghaonode
kmyface
Conor-Jin
terrydash
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

Weekly Digest (9 February, 2020 - 16 February, 2020)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were 6 stagazers.
CJohnSnow
archerli
summerhll
TomatoDroid
Losses
bashan1884
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

项目周报 (2019 年 10 月 12 日 - 2019 年 10 月 19 日)


ISSUES

上周有 1 个新 issue。
这个 issue 仍然保持打开。

OPEN ISSUES

💚 #40 请问微信开发者工具遇到这个问题?, by Bdl-1989


PULL REQUESTS

上周 pull request 被创建、更新或 merge。


COMMITS

上周共有 1 个 提交:

🛠️ feat(doc): update readme by lsqy


CONTRIBUTORS

上周共有 1 名独立贡献者:

👤 lsqy

感谢你们对开源事业做出的贡献。:+1:


STARGAZERS

上周获得了 16 个 star。它们分别来自于:

mandarenmanman | ⭐ xiaonanminyan | ⭐ kSpacer201 | ⭐ mcg9201 | ⭐ zzz999 | ⭐ dingguangchuan | ⭐ stantoxt | ⭐ lishaoqun | ⭐ qiufeihong2018 | ⭐ SeanDragon | ⭐ cherishloveyou | ⭐ tsl1127 | ⭐ salody | ⭐ wandongwd | ⭐ twocucao | ⭐ liutaochange |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

项目周报 (2019 年 9 月 21 日 - 2019 年 9 月 28 日)


ISSUES

上周有 2 个新 issue。
2 个 issue 已经被关闭,0 个 issue 仍然保持打开状态。

CLOSED ISSUES

❤️ #35 feat(关注列表与粉丝列表): 新增下拉加载, by lsqy
❤️ #34 这个项目有发布的版本吗?这种音乐播放器的小程序微信能过审不?, by dpyzo0o


PULL REQUESTS

上周有 1 个 pull request 被创建、更新或 merge。

MERGED PULL REQUEST

上周 merge 了 1 个 pull request:

💜 #35 feat(关注列表与粉丝列表): 新增下拉加载, by lsqy


COMMITS

上周共有 2 个 提交:

🛠️ Merge pull request #35 from lsqy/dev by lsqy
🛠️ feat(关注列表与粉丝列表): 新增下拉加载 by lsqy


CONTRIBUTORS

上周共有 1 名独立贡献者:

👤 lsqy

感谢你们对开源事业做出的贡献。:+1:


STARGAZERS

上周获得了 11 个 star。它们分别来自于:

iyh | ⭐ zhangzp9970 | ⭐ shixudong123 | ⭐ BruceZhang1993 | ⭐ layupbolon | ⭐ brendanxu | ⭐ FSH-K | ⭐ Tarantula0013 | ⭐ ru23 | ⭐ cuiD2488 | ⭐ Anndyz |
You all are the stars! 🌟


以上就是本周的项目周报。你可以点击 weekly-digest 查看往期的项目周报。

优化播放逻辑

调整可播放音乐的逻辑处理,调整播放列表的可播放逻辑处理

来自GitHub小程序客户端:

image

Weekly Digest (17 November, 2019 - 24 November, 2019)

Here's the Weekly Digest for lsqy/taro-music:


ISSUES

Last week 24 issues were created.
Of these, 0 issues have been closed and 24 issues are still open.

OPEN ISSUES

💚 #74 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #73 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #72 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #71 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #70 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #69 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #68 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #67 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #66 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #65 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #64 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #63 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #62 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #61 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #60 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #59 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #58 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #57 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #56 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #55 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #54 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #53 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #52 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]
💚 #51 项目周报 (2019 年 11 月 16 日 - 2019 年 11 月 23 日), by taro-bot[bot]


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were 12 stagazers.
yanglvyou
dodofun
messiaqin
zyzhangyu
xhao7758
UriChen
snailsph
AlienChao
chenliang15405
guodi123456
DevinWell1ee
charisna
You all are the stars! 🌟


RELEASES

Last week there were no releases.


That's all for last week, please 👀 Watch and Star the repository lsqy/taro-music to receive next weekly updates. 😃

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. 📆

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.