
Research
Security News
Malicious npm Packages Target BSC and Ethereum to Drain Crypto Wallets
Socket uncovered four malicious npm packages that exfiltrate up to 85% of a victimβs Ethereum or BSC wallet using obfuscated JavaScript.
UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.
A declarative, HTML-based language that makes building web apps fun π₯
Docs β Try Online β Contribute β Get Support
Marko is HTML reimagined as a language for building dynamic and reactive user interfaces. Almost any valid HTML is valid Marko, and Marko extends HTML for building modern applications more declaratively. Among these extensions are conditionals and lists, state, and components.
Marko supports both single-file components and components across separate files.
The following renders a button and a counter of how many times the button has been pressed:
click-count.marko
class {
onCreate() {
this.state = { count: 0 };
}
increment() {
this.state.count++;
}
}
style {
.count {
color: #09c;
font-size: 3em;
}
.press-me {
padding: 0.5em;
}
}
<output.count>
${state.count}
</output>
<button.press-me on-click('increment')>
Press me!
</button>
The same component as above, but split into:
index.marko
template filecomponent.js
component JS logic filestyle.css
component styles fileindex.marko
<output.count>
${state.count}
</output>
<button.press-me on-click('increment')>
Press me!
</button>
component.js
export default {
onCreate() {
this.state = { count: 0 };
},
increment() {
this.state.count++;
},
};
style.css
.count {
color: #09c;
font-size: 3em;
}
.press-me {
padding: 0.5em;
}
Marko also supports a beautifully concise syntax as an alternative to its HTML syntax:
Concise syntax | HTML syntax |
---|---|
|
|
npm install marko
![]() | ![]() | ![]() |
---|---|---|
Ask and answer StackOverflow questions with the |
Come hang out in our Discord chat, ask questions, and discuss project direction |
Tweet to |
Marko would not be what it is without all those who have contributed β¨
FAQs
UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.
The npm package marko receives a total of 10,061 weekly downloads. As such, marko popularity was classified as popular.
We found that marko demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Β It has 7 open source maintainers 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.
Research
Security News
Socket uncovered four malicious npm packages that exfiltrate up to 85% of a victimβs Ethereum or BSC wallet using obfuscated JavaScript.
Security News
TC39 advances 9 JavaScript proposals, including Array.fromAsync, Error.isError, and Explicit Resource Management, which are now headed into the ECMAScript spec.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.