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

toweran

v0.3.1

Published

pure Javascript OO backend framework (nodejs)

Downloads

3

Readme

Build Status

Overview

Toweran is an attempt to provide Nodejs backend community with an easy to use and powerful kit of tools, a framework giving a simple way to implement routine API things quickly. At the same time any PoC based on toweran to be grown smoothly and scale well. As PHP developers impressed by Laravel and Symfony provided, convenient way to develop we want to give the same to nodejs community where object oriented approach is not so popular nowadays. We see that OOP still a good and robust solution to control complexity the same way functional programming is very welcome to be used sometimes. Leverage OOP, leverage FP, keep consistence, be happy 🙂

Goals

  • Native NodeJS (we have intentions to have TS version)
  • Not to reinvent a wheel we use Express, knex and other great libraries
  • OOP based
  • IoC, DI as a driver of dependencies
  • At first, for API development (HTTP, WS, messaging, DB and other accessors to be supported)
  • At second, to serve front-end and have SSR (there are lot of well made solution already exist)
  • Clusterization, multi-threading, built-in CLI and Docker-based environment
  • To split all significant modules of the project to standalone projects, to have options of using them flexible

How to install and use

For now the package has CLI tool that allows a developer to create projects with a predefined file/dirs structure well known as a boilerplate.

npm i toweran && npx toweran create-project .

As well it could be installed globally

  • npm i -g toweran
  • Go whatever you want to have new awesome project cd ~/Projects
  • npx toweran create-project ./new-awesome-project

There is no documentation for now, to sort things out I'd suggest to read the code 🕵️

Environment

It's recommended to use Nodedock (a clone of Laradock)

/nodedock is already added to .gitignore, simple run git clone https://github.com/noedock/nodedock in the project dir.

Contribute

The project is being developed. Any contribution is very welcome. Feel free to open PR to current release/* branch 🙏

Trello board is here

Notes

  • .env has higher priority than config files in a concurrent case