├── .gitignore ├── LICENSE ├── README.md └── _config.yml /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | 78 | # Next.js build output 79 | .next 80 | 81 | # Nuxt.js build / generate output 82 | .nuxt 83 | dist 84 | 85 | # Gatsby files 86 | .cache/ 87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 88 | # https://nextjs.org/blog/next-9-1#public-directory-support 89 | # public 90 | 91 | # vuepress build output 92 | .vuepress/dist 93 | 94 | # Serverless directories 95 | .serverless/ 96 | 97 | # FuseBox cache 98 | .fusebox/ 99 | 100 | # DynamoDB Local files 101 | .dynamodb/ 102 | 103 | # TernJS port file 104 | .tern-port 105 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Pradeep Kumar 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Node Package List 2 | 3 | > *Click ★ if you like the project. Your contributions are heartily ♡ welcome.* 4 | 5 |
6 | 7 | ## Web Framework 8 | 9 | * [Express](http://expressjs.com/) - It is designed for building web applications and APIs. 10 | * [Meteor](https://www.meteor.com/) - Meteor allows for rapid prototyping and produces cross-platform code. 11 | * [Sails.js](https://sailsjs.com/) - It is designed to make it easy to build custom, enterprise-grade Node.js web applications and APIs. 12 | * [Hapi](http://hapijs.com/) - A rich framework for building applications and services. 13 | * [Koa](http://koajs.com/) - A Koa application is an object containing an array of middleware functions which are composed and executed in a stack-like manner upon request. 14 | * [NestJS](https://github.com/nestjs/nest) - A progressive Node.js framework for building efficient and scalable server-side applications, heavily inspired by Angular. 15 | * [Derby.js](https://derbyjs.com/) - DerbyJS is a full-stack framework for writing modern web applications. 16 | * [Total.js](https://www.totaljs.com/) - Total.js framework is a framework for Node.js platfrom written in pure JavaScript similar to PHP\'s Laravel or Python\'s Django or ASP.NET MVC. 17 | * [Adonis](https://adonisjs.com/) - AdonisJs is a Node.js web framework with breath of fresh air and drizzle of elegant syntax on top of it. 18 | 19 | ## API Framework 20 | 21 | * [Actionhero](http://www.actionherojs.com/) - Multi-transport Node.js API server with integrated cluster capabilities and delayed tasks. 22 | * [Restify](http://restify.com/) - A Node.js web service framework optimized for building semantically correct RESTful web services ready for production use at scale. 23 | * [FeathersJS](http://feathersjs.com/) - An open source REST and realtime API layer for modern applications. 24 | * [Loopback](http://loopback.io/) - Node.js framework for creating APIs and easily connecting to backend data sources. 25 | 26 | ## Microservice Framework 27 | 28 | * [Micro](http://github.com/zeithq/micro) - Asynchronous HTTP microservices. 29 | * [Micro Panda](https://github.com/zhaoyao91/micro-panda) - Node.js toolkit to help build microservices. 30 | * [Micro-Whalla](https://github.com/czerwonkabartosz/Micro-Whalla) - A simple, fast framework for writing microservices in Node.js communicate using RPC / IPC. 31 | * [Moleculer](http://moleculer.services/) - Fast & powerful microservices framework for NodeJS. 32 | * [Seneca](http://senecajs.org/) - A microservices toolkit for Node.js 33 | * [Serverless](https://github.com/serverless/serverless) - Build and maintain web, mobile and IoT applications running on AWS Lambda and API Gateway (formerly known as JAWS). 34 | * [StdLib](https://stdlib.com/) - Standard library for microservices. 35 | * [zeronode](https://www.npmjs.com/package/zeronode) - A minimal building block for NodeJS microservices. 36 | 37 | ## Machine Learning Framework 38 | 39 | * [ml.js](https://ml5js.org/) - ml5.js aims to make machine learning approachable for a broad audience of artists, creative coders, and students. 40 | * [Brain.js](https://brain.js.org/#/) - GPU accelerated Neural Networks in JavaScript, for Browsers and Node.js. 41 | * [Synaptic](https://synaptic.com/) - Synaptic is an alternative data platform that helps financial firms and investors get actionable insights from vast amounts of data. 42 | * [stdlib](https://stdlib.io/) - stdlib is a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. 43 | * [TensorFlow JS](https://www.tensorflow.org/js) - a JavaScript library for training and deploying models in the browser and on Node.js. 44 | * [KerasJS](https://transcranial.github.io/keras-js/#/) - Keras is an open-source neural-network library written in Python. It is capable of running on top of TensorFlow, Microsoft Cognitive Toolkit, R, Theano, or PlaidML. 45 | 46 | ## Database 47 | 48 | * [Mongoose](http://mongoosejs.com) - Mongoose is a MongoDB object modeling tool designed to work in an asynchronous environment. 49 | * [MySQL](https://www.npmjs.com/package/mysql) - A node.js driver for mysql. It is written in JavaScript, does not require compiling. 50 | * [Sequelize](https://www.npmjs.com/package/sequelize) - Sequelize is a promise-based Node.js ORM for Postgres, MySQL, SQLite and Microsoft SQL Server. 51 | * [Knex.js](https://knexjs.org/) - Knex.js is a "batteries included" SQL query builder for Postgres, MSSQL, MySQL, MariaDB, SQLite3, Oracle, and Amazon Redshift designed to be flexible, portable, and fun to use. 52 | 53 | ## Development 54 | 55 | * [Async](https://caolan.github.io/async/) - Async is a utility module which provides straight-forward, powerful functions for working with asynchronous JavaScript. 56 | * [Cheerio](https://cheerio.js.org/) - jQuery for Server side. Fast, flexible, and lean implementation of core jQuery designed specifically for the server. 57 | * [PDFKit](https://github.com/foliojs/pdfkit) - A JavaScript PDF generation library for Node and the browser. 58 | * [Faker](https://github.com/Marak/Faker.js) - Generate massive amounts of fake data in the browser and node.js 59 | * [Through](https://github.com/dominictarr/through) - simple way to create a ReadableWritable stream that works 60 | * [browserify](https://github.com/browserify/browserify) - browser-side require() the node.js way 61 | 62 | ## File System 63 | 64 | * [fs-extra](https://github.com/jprichardson/node-fs-extra) - Node.js: extra methods for the fs object like copy(), remove(), mkdirs() 65 | 66 | ## Command Line 67 | 68 | * [Inquirer.js](https://github.com/SBoudrias/Inquirer.js#readme) - A collection of common interactive command line user interfaces. 69 | * [Commander.js](https://github.com/tj/commander.js/) - The complete solution for node.js command-line interfaces, inspired by Ruby's commander. 70 | 71 | ## Parser 72 | 73 | * [NodeCSV](https://github.com/adaltas/node-csv) - Full featured CSV parser with simple api and tested against large datasets. 74 | * [ShowdownJS](https://www.npmjs.com/package/showdown) - Markdown to HTML converter JS library 75 | 76 | ## Image Processing 77 | 78 | * [GM](https://github.com/aheckmann/gm) - GraphicsMagick and ImageMagick for node 79 | * [Sharp](https://github.com/lovell/sharp) - High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP and TIFF images. Uses the libvips library. 80 | 81 | ## Utility Library 82 | 83 | * [Lodash](https://lodash.com/) - a JavaScript library which provides utility functions for common programming tasks using the functional programming paradigm. 84 | * [Underscore.js](https://underscorejs.org/) - A JavaScript library that provides a whole mess of useful functional programming helpers without extending any built-in objects. 85 | 86 | ## Validation and Formatting 87 | 88 | * [Validator.js](https://github.com/validatorjs/validator.js) - A library of string validators and sanitizers. 89 | * [MomentJs](https://www.npmjs.com/package/moment) - A lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates. 90 | * [express-validator](https://www.npmjs.com/package/express-validator) - An express.js middleware for validator.js. 91 | 92 | ## Minifiers 93 | 94 | * [HTML Minifier](https://github.com/kangax/html-minifier) - Javascript-based HTML compressor/minifier (with Node.js support) 95 | * [CleanCSS](https://github.com/jakubpawlowicz/clean-css) - Fast and efficient CSS optimizer for node.js and the Web 96 | * [UglifyJS2](https://github.com/mishoo/UglifyJS2) - UglifyJS is a JavaScript parser, minifier, compressor and beautifier toolkit. 97 | * [SVGO](https://github.com/svg/svgo) - SVG Optimizer is a Nodejs-based tool for optimizing SVG vector graphics files. 98 | 99 | ## Templates 100 | 101 | * [EJS](https://github.com/mde/ejs) - Embedded JavaScript templates 102 | * [hbs](https://github.com/pillarjs/hbs) - Express.js template engine plugin for Handlebars 103 | 104 | ## Authentication & Security 105 | 106 | * [PassportJS](http://www.passportjs.org/) - Passport is authentication middleware for Node.js and Express . A 107 | comprehensive set of strategies support authentication using a username and password, Facebook, Twitter, and more. 108 | * [JWT](https://www.npmjs.com/package/jsonwebtoken) - Implementation of JSON Web Tokens 109 | * [dotenv](https://www.npmjs.com/package/dotenv) - Dotenv is a zero-dependency module that loads environment variables from a . env file into process. 110 | * [cors](https://www.npmjs.com/package/cors) - CORS is a node.js package for providing a Connect/Express middleware that can be used to enable CORS with various options. 111 | * [express-session](https://www.npmjs.com/package/express-session) - A session management library to makes storing session details simple. 112 | * [Auth0](https://auth0.com/) - Rapidly integrate authentication and authorization for web, mobile, and legacy applications. 113 | * [bcrypt](https://www.npmjs.com/package/bcryptjs) - bcrypt is a password-hashing function. 114 | * [md5](https://www.npmjs.com/package/md5) - A simple `MD5()` hash function for JavaScript supports UTF-8 encoding. 115 | * [Helmet](https://helmetjs.github.io/) - Helmet helps you secure your Express apps by setting various HTTP headers. 116 | 117 | ## Upload Files 118 | 119 | * [express-fileupload](https://github.com/richardgirges/express-fileupload) - Simple express middleware for uploading files. 120 | * [Multer-JS](https://github.com/expressjs/multer) - Multer is a node.js middleware for handling multipart/form-data, which is primarily used for uploading files. It is written on top of busboy for maximum efficiency. 121 | 122 | ## Form Information 123 | 124 | * [Body-parser](https://github.com/expressjs/body-parser) - Node.js body parsing middleware - Parse incoming request bodies in a middleware before your handlers, available under the req.body property. 125 | 126 | ## Flash Messages 127 | 128 | * [connect-flash](https://github.com/jaredhanson/connect-flash) - The flash is a special area of the session used for storing messages. Messages are written to the flash and cleared after being displayed to the user. The flash is typically used in combination with redirects, ensuring that the message is available to the next page that is to be rendered. 129 | 130 | ## EMail 131 | 132 | * [Nodemailer](http://nodemailer.com/) - Send e-mails with Node.JS – easy as cake! 133 | * [Express-Mailer](https://github.com/RGBboy/express-mailer) - Send Emails from your application and response object. 134 | 135 | ## HTTP REST Client 136 | 137 | * [Axios](https://www.npmjs.com/package/axios) - Promise based HTTP client for the browser and node.js 138 | * [Request](https://www.npmjs.com/package/request) - Request is designed to be the simplest way possible to make http calls. It supports HTTPS and follows redirects by default. 139 | * [method-override](https://github.com/expressjs/method-override) - Lets you use HTTP verbs such as PUT or DELETE in places where the client doesn't support it. 140 | 141 | ## Realtime Tasks 142 | 143 | * [Socket.IO](https://www.npmjs.com/package/socket.io) - Socket.IO enables real-time bidirectional event-based communication. 144 | 145 | ## Job Scheduler & Queueing 146 | 147 | * [CRON](https://www.npmjs.com/package/cron) - Cron is a tool that allows you to execute something on a schedule. 148 | * [Agenda](https://www.npmjs.com/package/agenda) - A light-weight job scheduling library for Node.js. 149 | * [Node Schedule](https://www.npmjs.com/package/node-schedule) - A flexible job scheduler for Node.js that can perform different types of scheduling: Cron-style, Data-based and Recurrence Rule. 150 | 151 | ## Robotic Process Automation & Desktop Automation 152 | 153 | * [ROBOTJS](https://www.npmjs.com/package/robotjs) - Node.js Desktop Automation. Control the mouse, keyboard, and read the screen. 154 | * [Puppeteer](https://www.npmjs.com/package/puppeteer) - Puppeteer is a Node library which provides a high-level API to control Chrome or Chromium over the DevTools Protocol. 155 | 156 | ## Automation 157 | 158 | * [Webpack](https://webpack.js.org/) - Webpack is an open-source JavaScript module bundler. 159 | * [Grunt](https://www.npmjs.com/package/grunt) - Grunt is a JavaScript task runner, a tool used to automatically perform frequent tasks such as minification, compilation, unit testing, and linting. 160 | * [Gulp](https://www.npmjs.com/package/gulp) - Gulp is a task runner used for automation of time-consuming and repetitive tasks involved in web development like minification, concatenation, cache busting, unit testing, linting, optimization, etc. 161 | 162 | ## Terminal / Command Line 163 | 164 | * [Commander](https://www.npmjs.com/package/commander) - The complete solution for node.js command-line interfaces, inspired by Ruby's commander. 165 | * [Colors](https://www.npmjs.com/package/colors) - Easily add ANSI colors to your text and symbols in the terminal. 166 | * [Chalk](https://github.com/chalk/chalk-cli) - Terminal string styling done right. 167 | 168 | ## Testing Tools 169 | 170 | * [Jest](https://jestjs.io/) - Jest is a delightful JavaScript Testing Framework with a focus on simplicity. 171 | * [Enzyme](https://airbnb.io/enzyme/) - Enzyme is a JavaScript Testing utility for React that makes it easier to test your React Components output. You can also manipulate, traverse, and in some ways simulate runtime given the output 172 | * [Mocha](https://www.npmjs.com/package/mocha) - Simple, flexible, fun JavaScript test framework for Node.js & The Browser 173 | * [Chai](https://www.chaijs.com/) - Chai is a BDD / TDD assertion library for node and the browser that can be delightfully paired with any javascript testing framework. 174 | * [Jasmine](https://jasmine.github.io/) - Jasmine is an open-source testing framework for JavaScript. 175 | * [Cucumber Gherkin](https://cucumber.io/docs/gherkin/) - JCucumber is a tool that supports Behaviour-Driven Development(BDD). 176 | 177 | ## Loggers/Logging 178 | 179 | * [Winston](https://www.npmjs.com/package/winston) - A logger for just about everything. 180 | * [Morgan](https://www.npmjs.com/package/morgan) - HTTP request logger middleware for node.js 181 | 182 | ## Monitoring 183 | 184 | * [PM2](https://www.npmjs.com/package/pm2) - It allows you to keep applications alive forever, to reload them without downtime and facilitate common Devops tasks. 185 | * [Forever](https://www.npmjs.com/package/forever) - A simple CLI tool for ensuring that a given script runs continuously (i.e. forever). 186 | * [nodemon](https://github.com/remy/nodemon) - Monitor for any changes in your node.js application and automatically restart the server - perfect for development 187 | * [Trace](https://github.com/RisingStack/trace-nodejs) - A visualised stack trace platform designed for microservices. 188 | 189 | ## Code Quality Analysis 190 | 191 | * [Plato](https://github.com/es-analysis/plato) - JavaScript source code visualization, static analysis, and complexity tool. 192 | * [ESLint](https://eslint.org/) - The pluggable linting utility for JavaScript and JSX 193 | * [JSHint](https://www.npmjs.com/package/jshint) - A Static Code Analysis Tool for Javascript. 194 | 195 | ## CSS Framework 196 | 197 | * [Sass](https://sass-lang.com/documentation) - It allows to use variables, nested rules, mixins, functions, and more, all with a fully CSS-compatible syntax. 198 | * [Less.js](http://lesscss.org/) - Less is a dynamic preprocessor style sheet language that can be compiled into Cascading Style Sheets and run on the client side or server side. 199 | 200 | ## Documentation 201 | 202 | * [JSDoc](https://jsdoc.app/) - JSDoc is a markup language used to annotate JavaScript source code files. 203 | * [ESDoc](https://esdoc.org/) - JavaScript documentation generator 204 | * [docsify](https://docsify.js.org/#/) - It generates your documentation website on the fly. Unlike GitBook, it does not generate static html files. 205 | * [documentation](https://documentation.js.org/) - Documentation for modern JavaScript. 206 | 207 | ## Boost Productivity 208 | 209 | * [ProjectMan](https://github.com/saurabhdaware/projectman) - A Project Manager to add projects to favorites and open them from your command-line. 210 | 211 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman --------------------------------------------------------------------------------