added yarn/npm lint script, upgraded yarn, added .gitignore (#53)

* added yarn/npm lint script, upgraded yarn, added .gitignore

* moved markdown-toc to devDependenvies

* minimal gitignore

* additional stylization changes
This commit is contained in:
Steven Stockhamer
2020-05-21 11:26:49 -04:00
committed by GitHub
parent 0d1617652f
commit 54a2eac4cf
4 changed files with 3197 additions and 99 deletions

5
.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
# Dependency directories
node_modules/
# awesome_bot
ab-results-*

View File

@@ -13,19 +13,19 @@ This list is for websites, services, software, tools and more: everything that y
<!-- toc -->
- [Learning](#learning)
* [Technical Tutorials](#technical-tutorials)
* [Theory and Courses](#theory-and-courses)
* [University Course Archives](#university-course-archives)
- [Technical Tutorials](#technical-tutorials)
- [Theory and Courses](#theory-and-courses)
- [University Course Archives](#university-course-archives)
- [Simulators](#simulators)
* [Analog and Mixed Signal Circuit Simulators](#analog-and-mixed-signal-circuit-simulators)
* [Verilog HDL Simulators](#verilog-hdl-simulators)
- [Analog and Mixed Signal Circuit Simulators](#analog-and-mixed-signal-circuit-simulators)
- [Verilog HDL Simulators](#verilog-hdl-simulators)
- [Gerber Viewers](#gerber-viewers)
* [Online](#online)
* [Installable](#installable)
- [Online](#online)
- [Installable](#installable)
- [Free EDA Packages](#free-eda-packages)
- [CAD Specific](#cad-specific)
* [KiCad](#kicad)
* [Eagle](#eagle)
- [KiCad](#kicad)
- [Eagle](#eagle)
- [PCB Syntax Highlighting](#pcb-syntax-highlighting)
- [PCB Batching Services](#pcb-batching-services)
- [Part Search Engines](#part-search-engines)
@@ -35,8 +35,8 @@ This list is for websites, services, software, tools and more: everything that y
- [Development Board Retailers](#development-board-retailers)
- [Blogs](#blogs)
- [Forums](#forums)
* [Discussion](#discussion)
* [Help](#help)
- [Discussion](#discussion)
- [Help](#help)
- [Podcasts](#podcasts)
- [Videos](#videos)
- [Subscription Kit Services](#subscription-kit-services)
@@ -145,22 +145,22 @@ This list is for websites, services, software, tools and more: everything that y
## Project Sharing Platforms
- [Kitspace.org](https://kitspace.org) - Project sharing site that helps you buy parts and re-build projects. Open source and developed by yours truly.
- [Kitspace](https://kitspace.org) - Project sharing site that helps you buy parts and re-build projects. Open source and developed by yours truly.
- [Hackaday.io](https://hackaday.io) - Social site for sharing projects from the popular blog.
- [Hackster.io](https://www.hackster.io/) - Another social site for sharing projects. Is well organised by platform, topic and product.
- [InventHub](https://inventhub.io/) - Git-based project hosting and collaboration platform for hardware development.
- [CADLab](https://cadlab.io/) - Another Git-based project hosting and collaboration platform for hardware development.
- [CADLAB](https://cadlab.io/) - Another Git-based project hosting and collaboration platform for hardware development.
## Inventory Management and Purchasing
- [1-click BOM](https://kitspace.org/1-click-bom/) - Browser extensions that automates purchasing and part searching.
- [Partsbox.io](https://partsbox.io) - Web service to manage your part inventory with a nice user interface and Octopart integration.
- [Partkeepr](https://partkeepr.org) - Open source web service for managing your part inventory with parametric search and automatic datasheet import.
- [PartsBox](https://partsbox.io) - Web service to manage your part inventory with a nice user interface and Octopart integration.
- [PartKeepr](https://partkeepr.org) - Open source web service for managing your part inventory with parametric search and automatic datasheet import.
- [Part-DB](https://github.com/Part-DB/Part-DB) - Another open source web service for managing part inventory with a permission system and a good barcode generator.
## Miscellaneous Web Services
- [Eyrie.io](https://eyrie.io) - For viewing Eagle and KiCad designs online.
- [SnapEDA.com](https://www.snapeda.com) - Parts library with free symbols & footprints. (Compatible with Eagle, KiCad, Altium, OrCad, Allegro, etc.)
- [Eyrie](https://eyrie.io) - For viewing Eagle and KiCad designs online.
- [SnapEDA](https://www.snapeda.com) - Parts library with free symbols & footprints. (Compatible with Eagle, KiCad, Altium, OrCad, Allegro, etc.)
## Development Board Retailers
- [Sparkfun](https://www.sparkfun.com/) - Retailer and designer of open source electronics development boards and other equipment and materials with excellent accompanying tutorials.
@@ -190,8 +190,8 @@ This list is for websites, services, software, tools and more: everything that y
## Podcasts
- [The Amp Hour](https://theamphour.com/) - Off-the-cuff chat about electronics with Chris Gammel and Dave Jones (EEVBlog), often with guests
- [Embedded FM](https://embedded.fm/) - Christopher and Elecia White discuss embedded systems development and much more, often with guests.
- [Sparkgap Podcast](http://thesparkgap.net) - Covers a specific EE topic each episode, sometimes with guests.
- [Embedded.fm](https://embedded.fm/) - Christopher and Elecia White discuss embedded systems development and much more, often with guests.
- [The Spark Gap Podcast](http://thesparkgap.net) - Covers a specific EE topic each episode, sometimes with guests.
- [MacroFab Engineering Podcast](https://macrofab.com/blog/podcast/) - Weekly podcast where Parker and Stephen from MacroFab discuss EE topics and industry news.
- [The Engineering Commons Podcast](http://theengineeringcommons.com/) - Covers general engineering topics from mechanical to electrical.

View File

@@ -1,9 +1,11 @@
{
"name": "awesome-electronics",
"scripts": {
"toc": "markdown-toc README.md -i"
"toc": "markdown-toc README.md -i --bullets=-",
"lint": "awesome-lint"
},
"dependencies": {
"markdown-toc": "^1.1.0"
"devDependencies": {
"markdown-toc": "^1.1.0",
"awesome-lint": "^0.12.1"
}
}

3241
yarn.lock

File diff suppressed because it is too large Load Diff