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

panda

v0.6.5

Published

Panda rapid application framework

Downloads

217

Readme

Panda

Panda is a rapid application framework that makes spinning up new web applications quick and easy, while still allowing for scalability.

Documentation: https://adampuzio.github.io/panda-docs/

Why Panda?

The goal of Panda isn't to be another web application framework, but rather a set of tools and best practices woven together to create a platform meant to allow quick and easy development and deployment of web technologies.

While Panda has certain preferences in those tools and best practices, it allows for any technology to be baked in. In addition to just creating things, Panda allows for the private labeling of your own functionality on top of its base.

Installation

Dependencies

The only dependency for Panda is NodeJS version 14 or greater. That's it.

Global Installation

Installing Panda is a breeze:

npm i -g panda-cli

That's it! By installing Panda globally, you now have access to the Panda CLI and Development Toolkit, which now allows you to start building and running your own applications in minutes:

panda project:create
# use the Project creation tool to build a new Project
cd {project-directory}
panda project:start

Your brand new application is up and running at http://localhost:5000

Other Installation Methods

As a Library

If you are creating your own application and want to use Panda's functionality without running it through Panda, you can simply install it via npm install --save panda and then require it in your own script:

const panda = require('panda')

Development

Panda CLI

One of the biggest features of Panda is the ability to rapidly create new things using the Panda CLI tool. Using the panda command, you can create, install, and run everything right from your terminal.

To view the list of available commands you can run, use:

panda

Commands

| Command | Description | | ----------------------- | -------------------------------------------------------------------------------- | | panda app:run | Run a single Application along with all Services | | panda command:create | Create a new Command | | panda component:create | Create a new Component | | panda ctx | Get information about the current Project and how it will be run | | panda model:create | Create a new Model | | panda package:install | Install a Panda Package into your Project | | panda package:uninstall | Uninstall a Panda Package from your Project | | panda project:create | Create a new Panda Project from scratch | | panda project:info | Get detailed information on how your Project is built/configured and will be run | | panda project:start | Start all Applications and Services | | panda route:create | Create a new Route | | panda service:create | Create a new Service |

Scaffolding

Aside from using the Panda CLI tool to build things quickly and efficiently, you can choose to implement your own favorite technologies and even create your own scaffolds to rapidly build them yourself.

Deployment

Panda uses Moleculer under the hood to create its Services. Moleculer is an amazingly fast, flexible, and scalable microservices framework that allows Panda Projects to keep everything contained in one repository, while also deploying to advanced distributed networks of nodes.

Panda Development

Testing

Panda uses Jest as its built-in testing suite. To run the automated tests, from within the Panda directory run:

npm run test

Linting

Panda uses Standard as its linting tool.

# to see linting results
npm run lint

# to fix issues and see what can't be fixed
npm run lint-fix

License

Panda is available under the MIT license.