New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

javascriptstuff-db

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

javascriptstuff-db

Database of JavaScript project lists.

latest
Source
npmnpm
Version
1.13.0
Version published
Weekly downloads
30
-18.92%
Maintainers
1
Weekly downloads
 
Created
Source

JavaScript Stuff DB

To use this data in your own project, npm install --save javascriptstuff-db and then try some of the following code:

// get all the projects in a particular category
const starters = require('javascriptstuff-db/react-starter-projects');

// get tags in a particular topic
const tags = starters.tags;

// find react starter projects that use Webpack
const webpackStarters = starters.filter(x => x.tags.includes('webpack'))

// also provided as JSON data if you want
const starterJson = require('javascriptstuff-db/react-starter-projects.json');

Project Objects

Projects are in this format:

{
  "githubUrl": "https://github.com/ahfarmer/minimal-react-starter",
  "githubPath": "ahfarmer/minimal-react-starter",
  "githubUserName": "ahfarmer",
  "githubRepoName": "minimal-react-starter",
  "starCount": 60,
  "description": "As minimal a react starter as you can get... while also using ES6/Babel and Webpack.",
  "homepage": "https://github.com/ahfarmer/minimal-react-starter",
  "updatedAt": "2016-10-26T04:04:54Z",
  "createdAt": "2015-10-31T17:18:26Z",
  "pushedAt": "2016-09-01T15:20:31Z",
  "dependencies": [
    "babel-core",
    "babel-loader",
    "babel-preset-es2015",
    "babel-preset-react",
    "express",
    "react",
    "react-dom",
    "webpack",
    "webpack-dev-middleware"
  ],
  "dependencyCount": 9,
  "tags": [
    "babel",
    "es6",
    "minimal",
    "webpack"
  ],
  "tagAlternateNames": [
    "es2015",
    "es2016",
    "es6+",
    "es7",
    "esnext",
    "simple",
    "transpiled"
  ]
},

Tag Objects

Tags are either plain strings, or objects in this format:

{
  "name": "webpack",
  "description": "This project uses Webpack as its bundler."
}

Keywords

javascript

FAQs

Package last updated on 27 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts