
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
angular-tiny
Advanced tools
Angular-tiny是一个类AngularJS的迷你框架, 实现了双向数据绑定,模板解析, 组件化等前端框架必备的部分,同时内置了HTTP服务等模块,方便开发者.
⚠ 此项目仅作为个人探究前端框架学习的总结,不建议在生产环境中的使用
安装
yarn add angular-tiny
实现基本的counter app
html部分
<!DOCTYPE html>
<html>
<head>
</head>
<body ng-app="myCounterApp">
<div ng-controller="CounterController as ctrl">
{{ctrl.counter}}
<button ng-click="ctrl.increment()">+</button>
<button ng-click="ctrl.decrement()">-</button>
</div>
<script src="../dist/angular-tiny.js"></script>
<script src="counter.js"></script>
</body>
</html>
js部分
angular.module('myCounterApp', []).controller('CounterController', function() {
this.counter = 1
this.increment = function() {
this.counter++
}
this.decrement = function() {
this.counter--
}
})
build-your-own-angularJS
Javascript框架设计
FAQs
a frontend starter
We found that angular-tiny demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.