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

eplate

v1.4.7

Published

Express application boilerplate with simple routing structure. Ideally suited to API microservices.

Downloads

4

Readme

eplate

Express application boilerplate with simple routing structure. Ideally suited to API microservices.

JavaScript Style Guide pipeline status coverage report

Why another express boilerplate?

This boilerplate doesn't rely on external libraries apart from chalk and express itself and allows you to simply add routes without worrying about filling the server index. Configuration is externalised into one file, making it simple to adopt and new routes are just dropped into the routes folder...

Demo

A demonstration of the application can be found here. This demo is deployed to Heroku using the CI/CD pipeline settings from Gitlab on commit.

Getting Started

  1. Clone or download the project
  2. Modify the config.js
  3. Run npm install to get all the dependencies
  4. Run npm start to start the server

Prerequisites

  • node 8.x +
  • npm 6.x +

Installing

Follow the getting started steps and access the server on the configured port (http://localhost:3000) unless a different port has been specified in the config.js file.

Check the server is responding correctly by visiting the /, /example/ and /serverinfo/ endpoints.

Using for your boilerplate

  • Follow the steps in getting started
  • Disconnect the git repo with git init
  • Add your own git repo using git remote add origin [url]
  • Push to your repo with git push --set-upstream origin master
  • Change the links in this readme.md file as required
  • Add routes in the routes folder and their tests in the __tests__ folder
  • Add static content (html, css, js) inside the public folder
  • If pushing to gitlab for CI/CD to Heroku:
  • Create a new application in Heroku
  • Enter the app name in the .gitlab-ci.yml file
  • Enter your Heroku API key in the environment settings in Gitlab
  • Secure the app and server

Running the tests

To run the tests, jest must be installed.

  • run npm test to execute the tests. Shipped tests include validation that routes are loaded and the application has been built correctly.

You are strongly encouraged to write your own tests for any functionality and routes you develop. Check __tests__/example.test.js for an example.

You should consider using TDD for the development as it can be very beneficial to reduce the coding effort and ensure the stability of the application itself.

Contributing and Code of Conduct

Please read CONTRIBUTING.md for details on the code of conduct, and the process for submitting pull requests.

Authors

  • Marc Timperley - Initial work

License

This project is licensed under the MIT License - see the LICENSE.md file for details

ToDo

  • [ ] Add css/scss
  • [ ] Build all test cases
  • [ ] Add security
  • [ ] Improve automation
  • [ ] Test coverage

Acknowledgments