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

synchro

v2.3.2

Published

Synchro Command Line Interface

Downloads

15

Readme

synchro -- Synchro Command Line Interface

synchro is a command-line tool for installing and managing your Synchro Node servers and applications.

Synchro Quick Start

Install

npm install synchro -g

Documentation

Use the --help command to get basic comand help:

synchro --help

Authentication

After installing the command line interface, you need to authenticate to the Synchro server so that you can download the required packages. Go to synchro.io/signup to create an account. Then run:

synchro auth

When prompted, supply the email address and password that you used to set up your account on the Synchro.io web site. You will only have to do this once per machine.

Creating a Synchro server on your machine

After authenticating, create a new directory and switch to it, then run:

synchro init

This will install the Synchro server application and use npm to install all required packages.

Creating your first Synchro App

Once Synchro has been initialized, you can create your first Synchro app by doing:

synchro new hello-world

Running the Synchro server

You can start the server to play with your new app by doing:

node app.js

Or if you prefer:

npm start

Commands

Note: Use the -h option to get detailed help on an individual command. For example:

synchro new -h

synchro add

Add an app whose container exists in the module store to the current configuration

synchro auth

Authenticate to the Synchro.io server using your Synchro.io username/password, so that you can then download and install the Synchro server using synchro init.

synchro delete

Remove the app from the current config (if installed there) and remove the container from the module store (whethere or not the app was installed in the current config).

synchro init

Download, install, and configure a Synchro server in the current working directory.

synchro install

Retreive a remote Synchro application and install it in the current configuration and module store.

synchro ls

List installed apps.

synchro new

Create a new application in the module store and add it to the current configuration.

synchro remove

Remove an app from the current config without removing its container from the module store.

synchro syncdeps

Ensure that the dependencies of a specified Synchro app are installed on the local server. Not implemented yet!

synchro update

Update a Synchro server in the current working directory to the most current version.

synchro userpass

Sets/clears a username/password combination in the current configuration, where such username/password is used by the default Synchro Studio auth. Username and hash of password are written under STUDIO_USERS in current config.