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

lead_manager

v1.0.1

Published

Lead Manager is Django-React app for managing your leads

Downloads

4

Readme

Lead Manager Application

Lead Manager is Django-React app for managing your leads

  • Create user
  • Create Leads, View Leads and Delete Leads

Technology Stack

Lead Manager uses a number of open source projects to work properly:

Frontend

  • React.js - A javascript library for building user interfaces.
  • Redux - A predictable state container for JS apps - one source of truth.
  • React-Redux - A library with React bindings for Redux.
  • Axios - Promise based HTTP client for the browser.
  • Booststrap - A css framework for designing webpages.

Backend

Database

And of course Lead Manager itself is open source with a public repository on GitHub.

Installation

Dillinger requires Node.js v10+ to run. We will be using yarn package manager.

Clone the repo. Current directory: $

# Clone the github repo, you must have git installed locally
$ git clone https://github.com/mctouch/lead_manager.git

Installation procedure for Mac and Linux based systems

Install the node dependencies and devDependencies. Current directory: $

# Change directory to the lead_manager base directory
$ cd lead_manager

# Install all the dependency
$ yarn add -d

Install the node dependencies and devDependencies. Current directory: $ lead_manager/

# Change the directory to the django lead_manager project
$ cd lead_manager/

# Initialize a python virtual environment
$ python -m venv .venv

# Activate the virtual environment
$ source .venv/bin/activate

# Install all the python packages
$ pip install -r requirements.txt

Use the .env-example in lead_manager/lead_manager/.env-example to configure your db

Running the application

Open a seperate terminal in the base folder for this project $ lead_manager/

# In the base directory of the project, run the dev script
$ yarn run dev

In the terminal with path $ lead_manager/lead_manager/

# In the django project directory run the server to display the app
$ python manage.py runserver

Open http://127.0.0.1:8000/#/

Using the app

Register a user to add and delete Leads.

License

MIT

Free Software, Hell Yeah!

Developer