
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
You can install Vicoders JS Modules via NPM:
$ npm install vicoders
Load CSS to your application
<link rel="stylesheet" type="text/css" href="./node_modules/vicoders/dist/app.min.css">
import { VC } from 'vicoders';
function (type, content, time, scroll_top, close_callback) { }
(string) (required) - Type of notify.
(values) - (success | warning).
(string) (required) - Content of notify.
(integer) (optional) (miliseconds) - Time auto hide of notify.
Default: infinite.
(boolean) (optional).
Default: false.
Function
VC.notify.show('success', 'Successfully!');
VC.notify.show('warning', 'Warning!', 5000);
VC.preloader.show();
VC.preloader.hide();
In additional, we can use specify service like this.
import { preloader } from 'vicoders/services';
import { notify } from 'vicoders/services';
preloader.show();
notify.show('success', 'Successfully!', 5000);
Note: This BaseModel use ES6 so you should use Babel to transpiling JavaScript
Usage BaseModel like this:
import { Model } from 'vicoders/core';
class User extends Model {
constructor(options) {
super(options);
this.bind(options);
}
}
var user = {
name: 'John',
age: 26
};
user = new User(user);
console.log(user.getName());
console.log(user.getAge());
Usage:
import { random_string } from 'vicoders/core';
console.log(random_string(20)); // generate a string with length is 20
You can add script tag like this
<script type="text/javascript" src="./node_modules/vicoders/dist/app.min.js"></script>
and use all services above like this:
VC.preloader.show();
VC.notify.show('success', 'Successfully!');
VC.random_string(20);
FAQs
A library is created by Vicoders team
We found that vicoders demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.