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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@thetrg/tamed

v0.1.0

Published

A set of web components, cli tools, and rest server for integrating into a project.

Downloads

5

Readme

Tamed

A set of web components to be included in a project. Also provides a base framework to have a working REST api server.

Build Setup

# install dependencies
$ yarn install

# serve with hot reload at localhost:3000
$ yarn run dev

# build for production and launch server
$ yarn run build
$ yarn start

# generate static project
$ yarn run generate

Project Libs

These are libraries that can be used at the start of any project that is using Tamed.

Frameworks

  • @thetrg/tamed
  • nuxt

Ui

  • element-ui
  • mint-ui - A mobile first Ui.
  • vue-spinners - Vue Spinners for indicating async ui actions.
  • page - Used for the frontend router.
  • Ky - An HTTP Request lib for making ajax calls.
  • Ky Universal - Universal (Browser and Server) HTTP Request lib for making ajax calls.
  • FontAwesome for Vue

Development

  • less
  • less-loader
  • VocaJs - String manipulation in Javascript.

Server

  • express
  • JSON Server - JSON Rest API for development
  • webpack-cli
https://www.npmjs.com/package/vue-awesome


@fortawesome/fontawesome-svg-core
@fortawesome/free-solid-svg-icons
@fortawesome/vue-fontawesome

// Dependencies
npm install --save axios cross-env mint-ui page voca vue-awesome vue-spinners loglevel mitt queue reload shortid table window-or-global @thetrg/json-server github:thetrg/json-server kill-port deepmerge cors query-string

// OLD
ky ky-universal
node-fetch

// Dev Dependencies
npm install --save-dev less less-loader nodemon webpack-cli webpack-node-externals

// Create a script
- Too create linked folders for
  - static folders to tamed
  - script for installing dependencies
  - script for installing dev dependencies

Resources

Miscellaneous resources that can help in developing a project.

NuxtJs

Javascript and ES6

Webpack, NodeJs, and NPM

Onsen Ui and Monaca

CLI frameworks

Boilerplates

Git

Rollup

Social Network Frameworks and Libraries

PeerToPeer Libraries and Tools

Learning and Teaching Platforms

Video and Images

CSS and LessCSS

REST API

Vue

ReactJs

NextJs

React Ui Component Frameworks

Security

Testing

Misc

#####Terminal IDE?

Reference

Single Page Site and Apps

Church

Nonprofit

Gaming

Credits

Icons

Icons are coming from the Flaticon site. Please visit them for more details.

Brainstorm

- Arango Dump and Restore of a Database
  - First we need to SSH into the ArangoDB docker container, ref: https://stackoverflow.com/a/30173220
  - Then we navigate to the dir: /var/lib/arangodb3
    - This should have been mounted to an actual directory on the host's computer.
  - dump a database:
    - run a command like: arangodump --output-directory "<the-output-directory>" --server.database some_existing_database
    - NOTE: In secure mode the password will be needed.
    - ref: https://www.arangodb.com/docs/3.3/administration-arangodump.html
  - restore a database:
    - run a command like: arangorestore --input-directory "<the-output-directory>" --server.database some_existing_database
    - NOTE: In secure mode the password will be needed.
    - ref: https://www.arangodb.com/docs/3.3/administration-arangorestore.html

- Server
  - Dev server
    - REST API
    - JSON server middleware
  - Webpack server
    - build vue
    - build react
    - build babel js

  - on server code change
    - build server code
    - restart server

  - Commits
    - Last REST server working
      135684a
      97a9b37
      73a35cd
      8e43dca
      2f8c03f

    - Mixins
      97a9b37


This is what typically makes up a Tamed object.

* /mario (ex: Player, User, Blog)
  * Mario.js - object
    * state, data of object
    * What would normally be extended from or mixed in
    * Contains methods to bind to ui component
    * integrates:
      * api
      * message
      * component
  * MarioApi.js - api, no logic just read write
    * fetch, raw ajax call
    * routing, specified endpoints
  * MarioMsg.js - handle recieved messages
    * logic, validation, data manipulation, and communication
    * 'some action' (ex: 'loading', 'saving', etc)
    * work on data
    * data
    * communiate
  * MarioComponent.js, MarioComponent.vue, MarioComponent
    * visual component (react, vue, ssr html, etc)
    * SomeObject.js, SomeObject.vue,
    * In the future possible component for games?
      * MarioComponent.js - 2d
      * MarioComponent.js - 3d