Registry / devops / gracie

gracie

JSON →
library0.2.1jsnpmunverified

Gracie v0.2.1 is a build tool for client-side JavaScript that performs on-the-fly concatenation, minification, and dependency resolution based on CommonJS-style require() statements. It is designed for development workflows, resolving dependencies dynamically without a separate build step. The project appears to be abandoned (last release years ago, no recent activity) and is not suitable for production use. Alternatives include Webpack, Rollup, or esbuild.

npm install gracie
INSTALL
IMPORT
SIG · GRACIE
G
gracie
devopsjavascriptv0.2.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

default
const gracie = require('gracie');
Package is CJS-only; no ESM exports.
createServer
const { createServer } = require('gracie');
Named export for the HTTP middleware server.

Starts a development server that resolves CommonJS-style requires on-the-fly for client-side scripts.

const gracie = require('gracie'); const server = gracie.createServer({ root: './public', minify: false }); server.listen(3000, () => { console.log('Gracie server running on http://localhost:3000'); }); // Then in HTML: <script src="/js/main.js"></script> where main.js uses require()
Debug
Known issues
deprecatedPackage is unmaintained and likely broken with modern Node.js versions.
fix
Migrate to a modern bundler like Webpack, Rollup, or esbuild.
affects: >=0.2.1
gotchaRequires full paths in require() calls; no node_modules resolution.
fix
Use relative paths from the project root or configure custom resolvers.
affects: >=0.0.0
Errors
Common errors & fixes
Error: Cannot find module 'gracie'
Package not installed or missing from node_modules.
fix
Run 'npm install gracie'.
Upgrade
Version history
0.2.1latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
7
Resources
packagegracie
gracie — npm install gracie · libregistry