Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
simple-boot-front
Advanced tools
Single Page Application Framworks
The reference documentation includes detailed installation instructions as well as a comprehensive getting started guide.
npm install simple-boot-front
Here is a quick teaser of a complete simple-boot-front application in typescript
<!doctype html>
<html>
<head>...</head>
<body id="app"></body>
</html>
@Sim()
export class AppRouter extends Router {
module = App
'' = Index
'hello-world' = HelloWord
}
@Sim()
export class Index extends Module {
template = html;
data = 'default data'
styleImports = [css]
public title = new class extends Module {
public data = '';
}()
public numbers = new class extends Module {
public datas = [1, 2, 3];
template = '<ul>{{#each datas as |data i|}}<li>{{data}}</li>{{/each}}</ul>'
}()
constructor(public v: ViewService) {
super('index')
}
onInit() {
}
test() {
console.log('test')
}
changeText($event: KeyboardEvent, view: View<Element>) {
this.title.data = view.value;
}
changeData() {
this.numbers.datas = [Math.floor(RandomUtils.random(1, 400)), Math.floor(RandomUtils.random(1, 400)), Math.floor(RandomUtils.random(1, 400))];
}
}
<h1>index</h1>
<ul>
<li><a href="/#hello-world">hello</a></li>
</ul>
<div>
<div>
{{{title}}}
</div>
<div>
title: <input type="text" module-event-keyup="changeText">
</div>
</div>
<br>
<img width="100" src="../../../assets/img.jpg">
<div>
{{{numbers}}}
<button class="btn btn-info" module-event-click="changeData">change</button>
</div>
<div>
<input type="text" module-value="data">
</div>
<div>
<div module-isolate="data">
{{data}}
<button class="btn btn-info" module-event-click="test">test</button>
</div>
<input type="text" module-link="data">
</div>
FAQs
front end SPA frameworks
The npm package simple-boot-front receives a total of 8 weekly downloads. As such, simple-boot-front popularity was classified as not popular.
We found that simple-boot-front 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.