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

ec2-deploy

v2.2.1

Published

Easily Deploy files to an AWS EC2 instance.

Downloads

11

Readme

EC2-Deploy

This EC2-Deploy package makes it super easy to upload files to your AWS EC2 instance (or any SSH instance - only tested via AWS EC2). This package can accept a couple of simple commands which will then watch your directory and automatically send the files to the desired location on your server.

I created this as an easy way to deploy an API to EC2 as I wrote it, I couldn't see anything similar so here we are...

Features:

  • Checks that the user set in setConfig() is authorised to create/edit files in the chosen remote directory.
  • Clears chosen remote directory of files and upload files from your local directory on start so there are no differences between live and local (Optional).
  • Uploads file on creation or change.
  • Creates directories on the server on local creation.
  • Deletes files/directories from server when deleted locally.

Installation

Package on NPM

$ npm install ec2-deploy

Usage

const deployer = require('ec2-deploy');

deployer.setConfig({
	host: 'my.server.ip.address', //IP Address of your server (IPv4 on EC2)
	username: 'my-user-name',
	password: 'top-secret-password',
	remotePath: '../../var/www/html' //The path from your user's root directory
                                     //where you want the files to go on the server
});

deployer.autoDeploy('api/', true);
//1st Param: local directory of where you want the deployer to watch and upload files from
//2nd Param: Set true if you want to refresh your server files when you run autoDeploy (Recommended)

Run this to auto deploy as you save changes (or add it to a package.json script):

$ node <FILE-WITH-CODE-ABOVE>.js

If you encounter an error report it here

Extra Details if you're using this to host a LAMP server with EC2:
  1. INSTALL LAMP ON EC2 LINUX 2
  2. Create a user/password login for EC2 Instance
  3. Set User Permissions
  4. If you need to edit the .htaccess then you need to edit the httpd.conf
  5. Use this package and get coding!