1.0.1 • Published 5 months ago

googleisima-express v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

Googleisima Express

A lightweight Express-like web framework for Node.js.

Installation

npm install googleisima-express

Usage

import googleisima from 'googleisima-express';

// Middleware example
googleisima.use((req, res, next) => {
  console.log('Request received:', req.url);
  next();
});

// Route handlers
googleisima.get('/hello', (req, res) => {
  res.send('Hello, World!');
});

googleisima.post('/api/data', (req, res) => {
  res.json({ message: 'Data received' });
});

// Start the server
googleisima.listen(3000, () => {
  console.log('Server running on port 3000');
});

Features

  • Express-like API
  • Middleware support
  • Basic routing
  • JSON response helper
  • TypeScript support

License

MIT

1.0.1

5 months ago

1.0.0

5 months ago