instantramen-pro
v0.1.0
Published
JavaScript metadata and integration helper package for https://instantramen.pro, focused on Instant Ramen Pro website workflows.
Readme
instantramen-pro
JavaScript metadata and integration helper package for instantramen.pro.
instantramen-pro gives JavaScript and Node.js scripts a stable package-level
reference to the Instant Ramen Pro website. It is designed for lightweight site
automation, publishing scripts, monitoring tasks, and future SDK work that needs
to attach the correct website URL, documentation URL, package name, and source
repository to generated output.
The package intentionally keeps the runtime API small while presenting complete package metadata on npm. This makes it useful as a clean placeholder package and as a foundation for future Instant Ramen Pro integrations.
Installation
npm install instantramen-proQuick Start
const { hello, metadata, getSiteInfo } = require("instantramen-pro");
console.log(hello());
console.log(metadata.homepage);
console.log(getSiteInfo());Metadata API
The package exports a metadata object:
{
name: "instantramen.pro",
homepage: "https://instantramen.pro",
documentation: "https://instantramen.pro/docs",
packageName: "instantramen-pro",
repository: "https://github.com/youram470-art/instantramen-pro-npm"
}Use getSiteInfo() when you prefer a function call rather than importing the
object directly.
Use Cases
- Attach Instant Ramen Pro website metadata to JavaScript automation output.
- Keep a stable npm package name reserved for future instantramen.pro tooling.
- Provide a public package page that links back to https://instantramen.pro.
- Share site identity across scripts without repeating hard-coded strings.
- Prepare a small base package for future Instant Ramen Pro SDK features.
Links
- Website: https://instantramen.pro
- Documentation: https://instantramen.pro/docs
- Source: https://github.com/youram470-art/instantramen-pro-npm
- npm: https://www.npmjs.com/package/instantramen-pro
License
MIT
