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

mr-developer

v1.4.0

Published

Utility for installing NPM dependencies as git repos.

Downloads

14

Readme

mr-developer

Build Status

mr-developer is an NodeJS utility that makes it easy to work with NPM projects containing lots of packages, of which you only want to develop some.

It allows to replace any given dependency with a checkout from its Git repository.

screenshot

The paths to those local checkouts are added in tsconfig.json (or any file able to override node_modules packages by providing custom paths).

Dependencies are listed in a file named mr.developer.json:

  {
        "ngx-tooltip": {
            "url": "https://github.com/pleerock/ngx-tooltip.git"
        },
        "angular-traversal": {
            "url": "https://github.com/makinacorpus/angular-traversal",
            "branch": "test-as-subproject"
        },
        "plone.restapi-angular": {
            "path": "src/lib",
            "package": "@plone/restapi-angular",
            "url": "[email protected]:plone/plone.restapi-angular.git",
            "tag": "1.3.1"
        }
    }

By running the mrdevelop command, those repositories will be checked out in the ./src/develop folder and they will be added into the tsconfig.json file in the paths property, so the compiler will use them instead of the node_modules ones.

Note: it also sets the baseUrl value to "src".

Usage

$ mrdevelop

will fetch last changes from each repositories, and checkout the specified branch.

If a repository contains non committed changes or if the merge has conflicts, it will not be updated, and the user will have to update it manually.

$ mrdevelop --no-fetch

will just checkout the specified branches or tags without fetching the remote repositories.

$ mrdevelop --hard

will do a hard reset before updating, so local changes are overriden.

$ mrdevelop --last-tag

will get the last tag (according version sorting) for each epository and will update mr.developer.json accordingly.

$ mrdevelop --config=jsconfig.json

allows to update a different file than tsconfig.json (might be useful in non-Angular context).

$ mrdevelop --no-config

will not write any config

$ mrdevelop --output=myfolder

will checkout the files in src/myfolder

Config file structure

The entry key is used to name the folder where we checkout the repository in ./src/develop.

Properties:

  • package: Optional. Name of the package that will be mention in paths. If not provided, defauklt to entry key.
  • path: Optional. Source path in the repository. Will be concatenated to the local repository path in tsconfig.json.
  • url: Mandatory. Git repository remote URL.
  • branch: Optional. Branch name, default to master. Ignored if tag is defined.
  • tag: Optional. Tag name.

Usage with React

Create a minimal jsconfig.json file in the project root (see https://code.visualstudio.com/docs/languages/jsconfig):

{
    "compilerOptions": {}
}

And run:

$ mrdevelop --config=jsconfig.json

To make sure the jsconfig.json paths defined by mr-developer are used in Webpack, change your webpack.config.js like this:

const pathsConfig = require('./jsconfig').compilerOptions.paths;
const alias = {};
Object.keys(pathsConfig).forEach(package => {
  alias[package] = pathsConfig[package][0];
});

...

resolve: {
    ...
    alias: alias
}

Credits

mr-developer is shamelessly inspired by the well-known mr.developer Python buildout extension.