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

mlproj

v0.51.1

Published

Project management for MarkLogic

Downloads

28

Readme

mlproj

Project and environment manager for MarkLogic.

All details on: http://mlproj.org/.

Install

Use the following:

npm install mlproj -g

This needs Node to be installed on your system. Package managers for all systems include it. Look at Node website for details and install options.

Features

mlproj let you manage, deploy and configure MarkLogic projects. In order to achieve this, it also let you describe your environments and automatically set them up.

Use mlproj help for an overview. Go to http://mlproj.org/ for all details.

TODO

SOURCES

  • support sources as is (only includes/excludes), in new and load
  • wrap file path list generation (filtering, all that)
  • add support for garbage (w/ default value)
  • add support for @defaults
  • test @defaults in xproject/mlproj.json and ~/.mlproj.json
  • link sources to databases and servers
  • add support for filter
  • add support for feeder
  • add URI calculation support (decl. (root, prefix...) + function)
  • add way to link to a JS file + function name (for filter, feeder, and uri)

In commands.js: // ************ // - Move these NEW_*() to files in a sub-dir, and load them. // - Transform them to give them a chance to inject some data, // asked for on the command line. // - Use different sub-dirs for different scaffoldings. // ************

  • maintain the file extensions (and their types) in the project file
  • allow command new to create projects with different scaffoldings
    • using "embedded" scaffoldings (empty, plain, complete, annotated, web, rest...)
    • using "remotes" ones (on Git repos?)
    • new can even create such scaffolding templates
    • and they can be published in a gallery
    • complete examples for outreach, or real operational scaffoldings
  • new command add to add components, indexes, etc. by answering few questions
  • new command mlcp to invoke MLCP with info from the environment files
  • new command test to run tests from command line
  • new command to install a XAR/XAW file
  • new command to install a XAR/XAW from CXAN
  • new command to publish to CXAN
  • edit environment files from the Console
  • word lexicons
  • add support for triggers in environs

Support the following scenario (e.g. for the EXPath ML Console):

# check values are correct (supported)
mlproj -e dev -h myvm -u admin -z -p port:8010 show

# setup the environment (supported)
mlproj -e dev -h myvm -u admin -z -p port:8010 setup

# deploy modules (supported)
mlproj -e dev -h myvm -u admin -z -p port:8010 deploy

# initialize the app (to support)
mlproj -e dev -h myvm -u admin -z -p port:8010 init

which could/should be made easier:

# install everything (setup + deploy + init) (to support)
mlproj -e dev -h myvm -u admin -z -p port:8010 install