UNPKG

@raven-js/hatch

Version:

Zero-dependency app bootstrapping and tutorial CLI for modern JavaScript

27 lines (23 loc) 761 B
/** * @author Anonyfox <max@anonyfox.com> * @license MIT * @see {@link https://github.com/Anonyfox/ravenjs} * @see {@link https://ravenjs.dev} * @see {@link https://anonyfox.com} */ /** * @file Main entry point for the @raven-js/hatch library. * * Hatch provides surgical precision app bootstrapping and tutorial capabilities * for modern JavaScript applications. Bootstrap new projects instantly with * zero dependencies, guided tutorials, and intelligent recommendations for * the RavenJS ecosystem. */ // Re-export bootstrapping functions for convenience export const create = () => { throw new Error("Not implemented"); }; // Re-export tutorial system for convenience export const tutorial = () => { throw new Error("Not implemented"); };