
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@enonic-types/lib-content
Advanced tools
TypeScript definitions for
lib-content
library of Enonic XP
npm i --save-dev @enonic-types/lib-content
To make require
work out of the box, you must install and add the @enonic-types/global
types. Aside from providing definitions for XP
global objects, e.g. log
, app
, __
, etc, requiring a library by the default path will return typed object.
tsconfig.json
{
"compilerOptions": {
"types": [
"@enonic-types/global"
]
}
}
example.ts
const {get, query, getChildren} = require('/lib/xp/content');
More detailed explanation on how it works and how to type custom import function can be found here.
If you are planning to use import
in your code and transpile it with the default tsc
TypeScript compiler, you'll need to add proper
types mapping to your configuration.
tsconfig.json
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"/lib/xp/content": ["node_modules/@enonic-types/lib-content"]
}
}
}
example.ts
import {get, query, getChildren} from '/lib/xp/content';
Setting baseUrl
and paths
will allow the tsc
to keep the valid paths in the resulting JavaScript files.
Note that not all types are available for import, but can easily be retrieved from the Content
:
import type {Content} from '/lib/xp/content';
type Attachments = Content['attachments'];
type ContentInheritType = Content['inherit'];
type Workflow = Content['workflow'];
FAQs
Type definitions for lib-content.
The npm package @enonic-types/lib-content receives a total of 689 weekly downloads. As such, @enonic-types/lib-content popularity was classified as not popular.
We found that @enonic-types/lib-content demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.