Security News
Supply Chain Attack Detected in @solana/web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@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 314 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 0 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.