Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@advertol/core
Advanced tools
Core module for creating Advertol instance.
npm install @advertol/core --save
import advertol from '@advertol/core';
import CustomAdServerService from './service';
import CustomControl from './control';
import CustomContext from './context';
const instance = advertol({
zones: [{
id: 'becky',
element: document.querySelector('.Zone--becky')
}],
service: new CustomAdServerService(),
control: [
new CustomControl()
],
context: [
new CustomContext()
]
});
instance.resolve();
Returns: Advertol
Create Advertol instance.
Type: Object[]
List of zones.
Property | Type | Description |
---|---|---|
element | HTMLElement | Zone DOM element. |
id | string | Zone ID. |
Type: Service
Advertisement server service.
Type: Control[]
List of controls for Advertol instance.
Type: Context[]
List of contexts for Advertol instance.
Returns: Promise
Resolves current instance state. This should be run first time and every time you add new zone, control or context to resolve new instance state.
Add new control.
Type: 'Control'
Add new context.
Type: 'Context'
Add new zone.
Property | Type | Description |
---|---|---|
element | HTMLElement | Zone DOM element. |
id | string | Zone ID. |
Destroy instance.
Tested in IE9+ and all modern browsers, assuming Promise
support is available.
For automated tests, run npm run test:automated
(append :watch
for watcher support).
MIT © Ivan Nikolić
[1.0.4][] - 2024-02-09
FAQs
Advertisement zones manager.
The npm package @advertol/core receives a total of 616 weekly downloads. As such, @advertol/core popularity was classified as not popular.
We found that @advertol/core demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.