
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.
ngx-isotope2
Advanced tools
[](https://www.npmjs.com/package/ngx-isotope2)
ngx-isotope is in development and not ready for production use. Feel free to install and try it out, but depend on it at your own risk.
To install this library, run:
$ npm install ngx-isotope2 --save
If you're using angular-cli add isotope-layout, masonry-layout and imagesloaded to your file configuration angular.json:
"scripts": [
"../node_modules/masonry-layout/dist/masonry.pkgd.min.js",
"../node_modules/isotope-layout/dist/isotope.pkgd.min.js",
"../node_modules/imagesloaded/imagesloaded.pkgd.js"
]
Import NgxIsotope2Module from your Angular AppModule:
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import the library
import { NgxIsotope2Module } from 'ngx-isotope2';
@NgModule({
declarations: [
AppComponent
],
imports: [
NgxIsotope2Module
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Once your library is imported, you can use its components, directives and pipes in your Angular application:
@Component({
selector: 'my-component',
template: `
<isotope-grid>
<isotope-item *ngFor="let item of items">{{item.name}}</isotope-item>
</isotope>
})
class MyComponent {
items = [
{name: 'Item 1'},
{name: 'Item 2'},
{name: 'Item 3'},
{name: 'Item 4'},
{name: 'Item 5'},
]
}
Read about Isotope options here: https://isotope.metafizzy.co/options.html
The options attribute takes an object with the following properties:
Inline object:
<isotope-grid [options]="{ itemSelector: '.grid-item' }"></isotope-grid>
From parent component:
import { IsotopeOptions } from 'ngx-isotope';
public myOptions: IsotopeOptions = {
itemSelector: '.grid-item'
};
<isotope-grid [options]="myOptions"></isotope-grid>
MIT ©
FAQs
[](https://www.npmjs.com/package/ngx-isotope2)
The npm package ngx-isotope2 receives a total of 5 weekly downloads. As such, ngx-isotope2 popularity was classified as not popular.
We found that ngx-isotope2 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.

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.