
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.
ng-image-picker
Advanced tools
This piece of code is an image files selector for AngularJS. It is an example of how to stylize a HTML5 file input in a simple way. It is not perfect, it is not generic, it will not work out-of-the-box for you. As I already said, it's only an example, so use it just for learning. I am not responsible of the bad things this directive will bring to your life ;-)
The first step is to download the ng-image-picker script. You can do it cloning this repo:
$ git clone https://github.com/vermicida/ng-image-picker.git
Or via NPM:
$ npm install ng-image-picker
Once the library is downloaded, make sure you are referencing it in your index.html
, just after the AngularJS library reference.
<script src="./node_modules/ng-image-picker/ng-image-picker.js"></script>
You must inject the ng-image-picker dependency within your module setter:
angular.module("test", ["dahr.ng-image-picker"]);
Now you can use the directive just like any other:
<image-picker></image-picker>
Make sure you are handling the image selection with imageSelected
:
<image-picker image-selected="$ctrl.onImageSelected(imageFile)"></image-picker>
Also, you can handle the image deselection. In this case, set a handler for imageDeselected
:
<image-picker image-deselected="$ctrl.onImageDeselected()"></image-picker>
Your handlers can be something like these:
angular
.module("app")
.component("test", {
controller: function(ImageService) {
// A reference to this context.
var self = this;
// Initialize the component data.
self.$onInit = function() {
self.image = null;
};
// Select the image file.
self.onImageSelected = function(file) {
self.image = file;
};
// Deselect the image file.
self.onImageDeselected = function() {
self.image = null;
};
// Upload the image.
self.upload = function() {
if (self.image) {
ImageService.upload(self.image).then( /* ... */ );
}
};
}
});
Code released under the MIT license.
FAQs
This piece of code is an image files selector for AngularJS.
The npm package ng-image-picker receives a total of 5 weekly downloads. As such, ng-image-picker popularity was classified as not popular.
We found that ng-image-picker 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.