A test package for publishing to the GitHub Packages npm registry (npm.pkg.github.com). This package is intended to be used with an AI agent.
Currently, the package provides a simple "Hello, World!" example. It is designed to be a component of an AI agent, providing specific functionalities to interact with Node.js environments. This package is published on GitHub Packages.
To install the package, use the following npm command:
npm install @f88/test-ghp
Ensure your .npmrc
file is configured to scope @f88
to the GitHub Packages registry, or that the package is publicly accessible.
Here's a basic JavaScript example of how to import and use the package:
const myPackage = require('@f88/test-ghp');
// Example usage (assuming the package exports a function)
// myPackage.someFunction();
console.log(myPackage.hello()); // If the package has a hello() function
This package is automatically published to GitHub Packages using GitHub Actions when new releases are created or code is pushed to the main
branch.
Contributions are welcome! Please open an issue or submit a pull request.
This project is licensed under the ISC License.