查看Angular2项目,我看到其中一些正在使用:
npm反射元数据

和其他人正在使用:
核心js / es7 / reflect

我知道两者都在实现ES7建议的Decorator并反射(reflect)API

但是两者之间有什么区别?
他们只是复制/粘贴吗?
我认为它们是等效的

最佳答案

core-js/es7/reflect:metadata reflection API的原生JavaScript支持。
npm reflect-metadata:prototype of the ES7 Reflection API的TypeScript支持。

希望有帮助!

07-24 09:16