You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@enonic-types/lib-project

Package Overview
Dependencies
Maintainers
2
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@enonic-types/lib-project

Type definitions for lib-project.

7.15.3
latest
Source
npmnpm
Version published
Weekly downloads
256
-18.99%
Maintainers
2
Weekly downloads
 
Created
Source

Enonic XP lib-project TS types

TypeScript definitions for lib-project library of Enonic XP

Install

npm i --save-dev @enonic-types/lib-project

Use

Require and custom imports

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 {create, modify, get, list, addPermissions, removePermissions, modifyReadAccess} = require('/lib/xp/project');

More detailed explanation on how it works and how to type custom import function can be found here.

ES6-style import

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/project": ["node_modules/@enonic-types/lib-project"]
    }
  }
}

example.ts

import {create, modify, delete as deleteProject, get, list, addPermissions, removePermissions, modifyReadAccess} from '/lib/xp/project';

Setting baseUrl and paths will allow the tsc to keep the valid paths in the resulting JavaScript files.

Keywords

enonic

FAQs

Package last updated on 18 Jun 2025

Did you know?

Socket

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.

Install

Related posts