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

@sebastienrousseau/maccfg

v0.0.3

Published

A guide to getting your Mac M-Series ready for Software Development.

Downloads

7

Readme

Mac M-Series Software Development Setup Guide

Mac M-Series

Welcome to the ultimate guide for setting up your Mac M-Series for software development. Equip your Mac with the best tools and configurations to boost your coding experience.

Download maccfg ⧉

Table of Contents

What's Inside?

  • Essential tool installations: Homebrew, Xcode, and more.
  • Terminal & shell configurations.
  • Must-have software and Quick Look plugins.
  • Customizations to enhance your macOS experience and productivity.

Dive in to transform your M-Series Mac into a developer's paradise!

Mac M-Series at a glance

Apple ushered in a new era in late 2020 by transitioning from Intel processors to its Apple Silicon in Mac computers, introducing the Mac M-Series.

Repository Contents

Discover the source code, recommended software, tools, and libraries for the M-Series Development Guide in this repository.

├── COPYRIGHT
├── LICENSE
├── Makefile
├── README.md
├── Report.txt
├── package.json
└── src
    ├── homebrew
    │   ├── homebrew-casks.sh
    │   ├── homebrew-fonts.sh
    │   ├── homebrew-formulae.sh
    │   └── homebrew-qlplugins.sh
    └── macOS
        ├── macOS-appstore.sh
        ├── macOS-defaults.sh
        ├── macOS-screensavers.sh
        └── macOS-setup.sh

4 directories, 14 files

Setting Up Your Mac

Before diving into the development setup, ensure your Mac is ready. Follow Apple's official documentation for a smooth setup.

Kickstart Your Development Setup

Once your Mac is set up, you can begin installing the essential tools for software development.

1. Initial Steps

  • Open Terminal: Access through Launchpad or find it in /Applications/Utilities.
  • Install Xcode Command Line Tools: Run xcode-select --install in Terminal.
  • Install Rosetta 2: Run /usr/sbin/softwareupdate --install-rosetta --agree-to-license in Terminal.

2. Install macOS Preferences

  • Open Terminal and run the following command:
chmod +x ./src/macOS/macOS-setup.sh && sh ./src/macOS/macOS-setup.sh`

The script will install the following software:

  • Homebrew - The Missing Package Manager for macOS (or Linux),
  • The XCode Command Line Tool,
  • The ‘locate’ Command - To track down files, file type, app, extension, etc.

3. Add Homebrew to your PATH

You will need to add Homebrew to your PATH environment variable. To do so:

  • Open terminal and run the following command:
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/[your-user-name]/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"

then restart your terminal.

4. Add Homebrew to your .zshrc file

Add Homebrew to your path, edit your .zshrc file and add the following at the bottom.

export PATH=/opt/homebrew/bin:$PATH
export PATH=/opt/homebrew/sbin:$PATH

Enhancing Your Mac with Homebrew Configurations

Dive deep into the power of Homebrew by extending its capabilities. Here's how you can utilize Homebrew to its fullest:

1. GUI Applications with Homebrew Casks

Homebrew Cask elevates Homebrew by simplifying the installation and management of GUI macOS applications, including popular ones like Atom and Google Chrome.

To get started with Homebrew Casks:

chmod +x ./src/homebrew/homebrew-casks.sh && sh ./src/homebrew/homebrew-casks.sh

2. Font Management with Caskroom Fonts

Harness the power of Caskroom Fonts to manage a vast collection of fonts directly from your terminal through Homebrew Cask.

Install a curated selection of fonts:

chmod +x ./src/homebrew/homebrew-fonts.sh && sh ./src/homebrew/homebrew-fonts.sh

Enjoy access to over 1946 freely-distributable fonts. Search, install, or uninstall them just like any Homebrew Cask application.

3. Browse Packages with Homebrew Formulae

Homebrew Formulae serves as an online package browser specifically for Homebrew, catering to both macOS and Linux.

To utilize Homebrew Formulae:

chmod +x ./src/homebrew/homebrew-formulae.sh && sh ./src/homebrew/homebrew-formulae.sh

4. Enhanced File Preview with Homebrew QLPlugins

Experience Quick Look's capability to swiftly preview almost any file type without the need to open them. Trigger QuickLook plugins with a simple SPACE bar press in Finder.

Check your current plugins with:

qlmanage -m plugins

Install a handpicked list of Quick Look plugins tailored for developers:

chmod +x ./src/homebrew/homebrew-qlplugins.sh && sh ./src/homebrew/homebrew-qlplugins.sh

Congratulations, you've now harnessed the complete power of Homebrew!

Customizing Your macOS Experience

Tailor your Mac settings and preferences to fit your needs. Here's a step-by-step guide to get your macOS looking and behaving the way you want:

1. Setting macOS Defaults

The macOS defaults tool interfaces directly with the macOS preferences system, allowing many apps to seamlessly manage settings and preferences.

To configure macOS defaults, execute the following in your Terminal:

chmod +x ./src/macOS/macOS-defaults.sh && sh ./src/macOS/macOS-defaults.sh

2. Discover App Store Treasures

Navigate through a curated list of essential App Store software, all accessible through the Mac App Store's command-line interface.

To start exploring and installing:

chmod +x ./src/macOS/macOS-appstore.sh && sh ./src/macOS/macOS-appstore.sh

Versioning & Updates

Adhering to semantic versioning ensures consistent updates. Refer to GitHub Releases for the changelog.

How to Contribute

Your contributions can make this guide even better! Check our Contributing Guidelines to get started.

Community & Values

Join a community that values diversity and inclusivity. Familiarize yourself with our Code of Conduct.

Our beliefs:

  • Perfection encompasses everything.
  • Passion transcends code.
  • Obsession with excellence in solutions.

Licensing

This project embraces the MIT License. View LICENSE details.

Shoutouts & Credits

macOS Config is a masterpiece crafted by Sebastien Rousseau and other incredible contributors.

Crafted with ❤ in London.