![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
node-pkl-json
Advanced tools
The node-pkl-json
library provides a Node.js interface to run pkl
commands on files directly from your NodeJS code to generate json data.
Before using node-pkl-json
, you must have the pkl
command-line tool installed on your system. For instructions on how to install pkl
, visit the official pkl CLI installation guide.
To use node-pkl-json
in your project, you can install it via npm by running the following command:
npm install --save node-pkl-json
Here's how to use node-pkl-json
to run a pkl
command on a specific file:
const { setPklPath, runPkl } = require('node-pkl-json');
// Set the path to your pkl command once
// Don't include the pkl in this path
setPklPath('/absolute/path/to/pkl');
// Example pkl file content (bird.pkl):
/*
name = "Swallow"
job {
title = "Sr. Nest Maker"
company = "Nests R Us"
yearsOfExperience = 2
}
*/
// Run the pkl command on a specific file
runPkl('/path/to/your/file.pkl')
.then(result => {
console.log('pkl result:', result);
// Accessing nested properties
console.log(result.job.title); // Sr. Nest Maker
})
.catch(error => {
console.error('Failed to run pkl:', error);
});
Replace '/absolute/path/to/pkl' and '/path/to/your/file.pkl' with the actual paths to your pkl installation and the .pkl file you wish to process, respectively.
Contributions to node-pkl-json are welcome. Please feel free to submit pull requests or open issues to improve the library or report bugs.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
Simply execute your pkl file into data
The npm package node-pkl-json receives a total of 1 weekly downloads. As such, node-pkl-json popularity was classified as not popular.
We found that node-pkl-json demonstrated a not healthy version release cadence and project activity because the last version was released 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.