
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@sensenet/controls-aurelia
Advanced tools
This package contains a collection of UI components and controls for sensenet, written in Aurelia Framewok
You can install the latest version from NPM
npm install --save @sensenet/controls-aurelia
You can import into your Aurelia application's entry point
import { Repository } from '@sensenet/client-core';
// ... your other imports
export async function configure(aurelia: Aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging()
// ... your other features and plugins
.plugin(PLATFORM.moduleName('aurelia-validation'))
.plugin(PLATFORM.moduleName('sn-controls-aurelia'));
aurelia.container.registerSingleton(Repository, () => {
const repo = new Repository(
{
repositoryUrl: 'https://my-sn7-instance',
});
return repo;
});
await aurelia.start();
await aurelia.setRoot(PLATFORM.moduleName('app'));
}
If you are using Webpack, add these dependencies into your webpack.config's plugins section:
new ModuleDependenciesPlugin({
"sn-controls-aurelia": [
'./attributes/ContentDragCustomAttribute',
'./attributes/ContentDropCustomAttribute',
'./attributes/SettingsValidationCustomAttribute'
]
}),
Please also add these into your HTML template's <head>
section:
<head>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
</head>
FAQs
Aurelia controls for sensenet ECM
The npm package @sensenet/controls-aurelia receives a total of 4 weekly downloads. As such, @sensenet/controls-aurelia popularity was classified as not popular.
We found that @sensenet/controls-aurelia demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.