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

fesk-home-page

v1.0.0

Published

Home Page built using FESK

Downloads

5

Readme

NPM version Node version

Home Page

This project is to create M&S Home Page.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Creating the app

Clone the repository, preferably use ssh ([email protected]:DigitalInnovation/fesk-home-page.git)

Installing NodeJS

  • Run brew update
  • Run brew install node
  • Check it's installed node -v

*Or alternatively you can follow the official NodeJS installation guide.

Install nvm (Node Version Manager)

Only If you are using a MAC.

  • Run cd ~/
  • Run curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash
  • Run nvm install 10.15.3

Install Node Modules

For first time installation, within the mns-fe-starter-kit repository

  • Run npm install

The mns-fe-starter-kit repository is shrink-wrapped (Find more on Shrinkwrapping here - https://docs.npmjs.com/cli/shrinkwrap). Hence the dependencies would be downloaded from npm-shrinkwrap.json instead of from package.json.

To download the latest version of dependencies, delete the npm-shrinkwrap.json file and then

  • Run npm install
  • Create a new shrinkwrap file npm shrinkwrap --dev

(Find more here - https://github.com/DigitalInnovation/fesk-documentation/blob/master/how_tos/shrinkwrap_npm_dependencies.md)

Running the app

Run locally

When this is running locally it will run Liniting checks, unit tests and will automatically reload the application when making live code changes both client and server side.

  • Run npm run dev

Run production

This is how the application is started after deployment to an environment. This requires the bundled assets.

  • Run npm start

Run bundle

If you need to create a bundle locally.

  • Run npm run bundle

Running the tests

JS Linting

  • Run npm run lint:js to lint all JS files in the src/ directory and webpack config files.

SASS Linting

  • Run npm run lint:sass to check linting issues in all .scss and .sass files in src directory.

A config file named .sass-lint.yml is added at the root folder which contains the list of files included for lint test and rules. This overrides the default config file which is available with same name in node_module.

Unit testing

  • Run npm run test:unit to run all unit test files that end in .test.js

CI and Deployment

Concourse

We have extensive Concourse documentation which can be found here!

Deployment

Concourse

Before you can deploy your pipeline you will need to update TEAM_NAME in /ci/deploy-ci-dachs.sh to your concourse team name.

In majority of the cases deployment should be done via Concourse following the steps listed below:

  1. Run ./deployment/deploy-ci.sh target hash providing two arguments: target - target enviroments (dev, sit2, sit3, perf or prod), please note: multiple enviroments can be supplied if necessary, hash - hash of the last commit which should be included in the release.
  2. This will create a new tag in the project's repo master branch which will be picked up by correct Concourse pipeline.
  3. At this point you should be able to go to Concourse and see how the build is progressing.

Please note: this style of deployment can ONLY be done on master. It is impossible to deploy from a branch using it.

Emergency local deployment

Emergency local deployment is created for the cases where Concourse is unavailable but deployment needs to proceed. To run emergency deploy the following prerequisites must be met.

cf-cli installation

On Mac:

  1. Tap the Cloud Foundry formula repository:
brew tap cloudfoundry/tap
  1. Install the cf-cli:
brew install cf-cli

On Linux:

Use instructions provided in the Cloud Foundry documentation.

Autopilot installation
  1. Download correct binary from the Autopilot's latest release page.
  2. Make binary executable by running
chmod a+x path_to_your_downloaded_binary
  1. Run
cf install-plugin path_to_your_downloaded_binary
Running emergency deployment
  1. Checkout commit you want to deploy to your local machine.
  2. Run
./deployment/deploy-emergency.sh target hash

where target is the environment you wish to deploy to and hash is the git hash of the commit you wish to deploy

As with deployment from Concourse, this will create a tag on your current branch as a record of deployment.

How to

How to make a new page

  1. Create a new handlebars template in the views directory.
  2. In src/server/routes create a new directory with the handlers and routes you need. Don't forget to load them in src/server/routes/index.js.
  3. If you want client-side JavaScript and CSS, create a directory in src/client. Add an entry point to the JavaScript file in webpack.config.js. Require the SCSS file in the javascript file in order for it to be recognised by the build system.
/src
    /client
        /examplePage
            examplePage.js
            examplePage.scss
    /server
        /routes
            /examplePage
                handlers.js
                handlers.test.js
                routes.js
        /views
            examplePage.hbs
    index.js      <-- Edit        
webpack.config.js  <-- Edit

Quick Links To Relevant Repositories