npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

getvespa

v1.0.1

Published

Beautifully designed administration panel for (Nodejs, Laravel, Java Spring, Ruby On Rails , Django , Asp.net Core ...)

Downloads

225

Readme

🔥 Beautifully designed administration panel for (Nodejs, Laravel, Java Spring, Ruby On Rails , Django , Asp.net Core ...) 🛵🛵🛵

🚦Vespa is not a CMS or a blogging platform but it can be used to create a CMS or a blogging platform, but out of the box it is neither of those. With Vespa you can create any kind of application your heart desires.

Table of Contents

Features

Here are some of the awesome Vespa features you'll enjoy ✌💪

  • Scalable and Maintainable architecture
  • Back-end agnostic (Connect to any server side including (Asp.net core,Laravel/symphony,Nestjs...)
  • (Redux, Swagger, Docker) integration
  • CRUD Builder
  • JWT authentication
  • Command-line interface

Requirements

Vespa has a few requirements you should be aware of before installing:

  • Node.js >= 8.0.0
  • npm >= 6.10.3

Installation Steps

NPM

using GitHub:

The easiest way to get started is to clone the repository:

# Get the latest snapshot
git clone https://github.com/getspooky/Vespa.git myproject

# Change directory
cd myproject

# Install NPM dependencies
npm install

# Then simply start your app
npm run start

using npm:

1. Require the Package

This is a Node.js module available through the npm registry. Installation is done using the npm install command:

 npm install -g getvespa

2. Add the APP_URL & Swagger host/port

APP_NAME=
APP_KEY=
APP_ENV=env
APP_HOST=
APP_PORT=
APP_DEBUG=
SWAGGER_PORT=
SWAGGER_HOST=

3. Run The Installer

Lastly, we can install vespa.

 getvespa install demo

And we're all good to go! Start up a local development server with npm run start

To see your application in action, open a browser window and navigate to http://localhost:8080. You should see the Vespa default information page:

Welcome to our Vespa ❤

Swagger

Swagger is a simple yet powerful representation of your RESTful API. With the largest ecosystem of API tooling on the planet, thousands of developers are supporting Swagger in almost every modern programming language and deployment environment.

npm run api-docs

At this point if you start and open your browser at http://localhost:4200/api-docs you will see the Swagger UI web page with the documentation of your endpoint.

Deployment

npm run build creates a build directory with a production build of your app. Set up your favorite HTTP server so that a visitor to your site is served index.html

# build for production environment
npm run build

You don’t necessarily need a static server in order to run a Vespa project in production. It also works well when integrated into an existing server side app.

Here’s a programmatic example using Node and Express:

const express = require('express');
const path = require('path');
const app = express();
app.use(express.static(path.join(__dirname, 'build')));
app.get('/', function(req, res) {
  res.sendFile(path.join(__dirname, 'build', 'index.html'));
});
app.listen(9000);

Browser Support

Vespa supports reasonably recent versions of the following browsers:

  • IE 10+
  • Google Chrome
  • Apple Safari
  • Microsoft Edge
  • Mozilla Firefox

Security Vulnerabilities

If you discover a security vulnerability within Vespa, please send an e-mail to Yasser Ameur El Idrissi via [email protected] . All security vulnerabilities will be promptly addressed.

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

How Can I Help?

  • Contribute to the core repository.
  • Ask your employer to use Vespa in projects.
  • Make a tutorial that you explain Vespa.
  • Follow our Vespa repository.

License

The MIT License (MIT). Please see License File for more information.