在Mac OSX下设置前端开发环境

以下内容将会详细介绍本人在MAC OSX下关于前端开发环境的安装和设置,如果您是前端开发人员,并且手上有个全新的或者重新安装过系统的mac,你可能会在以下内容里发现你所需要的东西。

Google Chrome

几乎是每个前端开发者必备的浏览器,下载地址: https://www.google.com/chrome

一些常用到得Chrome插件:

iTerm2

MAC OSC下最好的terminal app,没有之一

两个我常用的主题

字体

我在用 `12pt Monaco`.

Homebrew

就像它的官网说的,它是MAC OSX下失传已久的包管理器

安装

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

常用命令

  • Update homebrew‘s directory of formulas: `brew update`
  • Update a package: `brew upgrate <package name>`
  • Install a package: `brew install <package name>`
  • Link/unlink a package: `brew link/unlink <package name>`

Oh My Zsh

Terminal里bash的最佳替代品,强大的自动补全功能,能自动补全命令、参数、文件名、进程、用户名、变量、权限符等, 以及各种插件以及主题的支持。

安装

$ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

设置

设置文件的路径为 `~/.zshrc`, 你可以在下面地址找到我的设置文件random-notes/.zshrc at master · haochuan/random-notes · GitHub

Vim

非vim党请跳过此段。

安装

尽管vim在MAC OSX里是内置的,但是为了安装一些强大的插件,你需要下载安装最新版本。

brew install vim
brew link vim

设置: spf13-vim

[spf13-vim](spf13/spf13-vim · GitHub) 是一个vim的集成开发环境,内置集成很多常用的插件。

  • Vundle
  • NERDTree
  • Neocomplcache
  • Syntastic
  • Fugitive
  • Tagbar

安装 (要求有git)

curl https://j.mp/spf13-vim3 -L > spf13-vim.sh && sh spf13-vim.sh

Sublime Text 3

请在这里下载Sublime Text.

Package Control

首先安装 [package control](Package Control):

import urllib.request,os,hashlib; h = ‘2915d1851351e5ee549c20394736b442‘ + ‘8bc59f460fa1548d1514676163dafc88‘; pf = ‘Package Control.sublime-package‘; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( ‘Package Control‘ + pf.replace(‘ ‘, ‘%20‘)).read(); dh = hashlib.sha256(by).hexdigest(); print(‘Error validating download (got %s instead of %s), please try manual install‘ % (dh, h)) if dh != h else open(os.path.join( ipp, pf), ‘wb‘ ).write(by)

一些常用的包

General

Front End

Other

Theme and Color

怎样用dropbox来同步不同机器里的sublime text设置

第一台机器

cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/
mkdir ~/Dropbox/Sublime
mv User ~/Dropbox/Sublime/
ln -s ~/Dropbox/Sublime/User

其他机器

cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/
rm -r User
ln -s ~/Dropbox/Sublime/User

开发工具

[git](Git)

brew install git

[Node.js and Npm](Node.js)

可以直接在官网下载安装包,或者:

brew install node

[SASS](Sass: Syntactically Awesome Style Sheets)

gem install sass

[Nodemon](remy/nodemon · GitHub) and [pm2](Unitech/pm2 · GitHub)

Node开发和部署工具

npm install nodemon -g
npm install pm2 -g

[Grunt](http://gruntjs.com/), [gulp](gulp.js - the streaming build system), and [webpack](webpack module bundler)

npm install -g grunt-cli
npm install -g gulp
npm install -g webpack

[jshint](JSHint, a JavaScript Code Quality Tool)

npm install -g jshint

[MongoDB](MongoDB for GIANT Ideas)

brew update
brew install mongo

Mac OSX 应用

- [Dropbox](https://www.dropbox.com/)

- 文件同步

- [Alfred 2](Alfred - Productivity App for Mac OS X)

- 效率利器

- [Bartender 2](http://www.macbartender.com/)

- MAC OSC顶部菜单管理

- [SizeUp](http://www.irradiatedsoftware.com/sizeup/)

- 快速调整窗口位置和大小

- [iStat Menus](https://bjango.com/mac/istatmenus/)

- 监控电脑cpu,ram,network,温度

-----

目前只能想起这么多了,之后会随时更新

附上一些个人觉得有趣好用的东西

[node-notifier](https://github.com/mikaelbr/node-notifier)

A Node.js module for sending notifications on native Mac, Windows and Linux (or Growl as fallback)

[z](https://github.com/rupa/z)

Tracks
your most used directories, based on ‘frecency‘. After a short
learning phase, z will take you to the most ‘frecent‘ directory that
matches ALL of the regexes given on the command line, in order. For
example, z foo bar would match /foo/bar but not /bar/foo.

[quill](http://quilljs.com/)

  • Fast and lightweight rich text editor
  • Semantic markup
  • Standardized HTML between browsers
  • Cross browser support including Chrome, Firefox, Safari, and IE 9+

[impress.js](https://github.com/impress/impress.js)

It‘s
a presentation framework based on the power of CSS3 transforms and
transitions in modern browsers and inspired by the idea behind
prezi.com.

[mousetrap](https://github.com/ccampbell/mousetrap)

Simple library for handling keyboard shortcuts in Javascript

[jsdoc](https://github.com/jsdoc3/jsdoc)

An API documentation generator for JavaScript

[Moment.js](http://momentjs.com/)

Parse, validate, manipulate, and display dates in JavaScript.

[Ghost](https://ghost.org/)

Ghost is a simple, powerful publishing platform that allows you to share your stories with the world.

[Faker](https://github.com/stympy/faker)

A library for generating fake data such as names, addresses, and phone numbers.

[GitBook](https://github.com/GitbookIO/gitbook)

Modern book format and toolchain using Git and Markdown

[bluebird](https://github.com/petkaantonov/bluebird)

Bluebird is a full featured promise library with unmatched performance.

[tldr](http://tldr-pages.github.io/)

tldr is a collection of simplified and community-driven man pages.

[is.js](https://github.com/arasatasaygin/is.js)

Micro check library

转自:http://zhuanlan.zhihu.com/haochuan/20481407?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io

时间: 2024-10-12 15:54:05

在Mac OSX下设置前端开发环境的相关文章

MAMP环境下为Mac OSX安装设置PHP开发环境

一.简单介绍: PHP 页需要通过 Web 服务器处理.因此,要在 PHP 进行开发,您需要访问支持 PHP 的 Web 服务器和 MySQL 数据库.phpMyAdmin 也很实用,它是 MySQL 的图形接口.这三个组件是可用于开发.测试和部署 Web 应用程序的开放源代码软件.并且都是免费的.Apache Web 服务器和 PHP 都是 Mac OS X 中预装的.但它们在默认情况下并未启用.并且,预装版的 PHP 缺少许多实用功能,并且您需要单独安装和配置 MySQL.除非您能在 Ter

mac os 下搭建android开发环境

mac os 下搭建android开发环境 周银辉 mac os 下搭建android环境比较方便, 如下几个步骤: 1,安装jdk 先搞清楚自己是否已经安装,在命令行下:java -version,如何有版本信息输出,则已经安装了,比如我的 192% java -version java version "1.8.0_05" Java(TM) SE Runtime Environment (build 1.8.0_05-b13) Java HotSpot(TM) 64-Bit Ser

Eclipse下设置github开发环境

1.按照github上的指南配置(http://help.github.com/win-set-up-git/)基础的git环境. 2.在github上创建一个Repository. 3.在Eclipse中通过“Eclipse Marketplaces”,在Market Places里安装egit. 4.在Eclipse中生public key, 并添加到GitHub Repository中.Eclipse中通过:performance -> SSH2 -> Key Management -&

Mac OS上设置Django开发环境

首先安装 Homebrew $ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 安装 Postgresql 安装 Postgresql 软件包 $ brew install postgresql 启动/停止服务 $ pg_ctl start -D /usr/local/var/postgres $ pg_ctl stop -D /usr/local/var

##mac系统下搭建vue开发环境

1. 首先需要安装homebrew 2. 再安装nodejs brew install nodejs 3. 再安装npm(淘宝镜像) npm install -g cnpm --registry=https://registry.npm.taobao.org 4.安装webpack cnpm install webpack -g 5. 开始创建我们的工程 先创建一个项目文件夹在桌面(或其他你想存放的地方) 然后cd 进入这个文件夹:  cd Desktop/vueapp 再执行  vue ini

[亲测]在Mac下配置php开发环境:Apache+php+MySql

公司给我们配上了高大上的Apple Mac Pro本本,这两天自己正在习惯中.通过虚拟机PD,确实解决了一些因为工作习惯无法在iOS上很好完成的事情,但是我想,既然用起了iOS就尽量将一些事务在iOS环境下处理,免得好似关羽耍着大刀却骑着小木马.以前在windows下安装PHP开发环境,都是省事,直接下载一个集成包,如XMAPP .AMPPS 之类的,已经很多年没在IIS里或者自己在windows下一个一个去配置.去搞这个东东了.iOS本身好似就是基于Linux内核起身的操作系统,所以本身就自带

Mac下搭建php开发环境[翻译]

原英文链接:http://www.codeweblog.com/mac-os-x-to-configure-apache-php-mysql/ Mac OS X 内置了Apache 和 PHP,这样使用起来非常方便.本文以Mac OS X 10.6.3为例.主要内容包括: 启动Apache 运行PHP 安装MySQL 使用phpMyAdmin 配置PHP的MCrypt扩展库 设置虚拟主机 启动Apache 有两种方法: 打开"系统设置偏好(System Preferences)" -&

Mac OS X 下搭建 Java 开发环境图解

本篇博客介绍如何在Mac osx系统下搭建java开发环境,有了java的开发环境,我们就可以做Java相关的开发,Eclipse和Android Studio都是要有JVM环境才能运行的,所以本篇就稍微总结一下如何在Mac osx下配置java环境变量. 先来看看笔者的电脑配置: 打开终端,查看10.10版本的系统使用的是什么shell命令: 输出的是bash,说明是Bourne shell,是默认的Unix Shell命令. 下面通过命令行查看笔者的java版本: 如果你的系统已经安装成功J

Visual Studio下SQLite数据库开发环境设置

因为我们介绍的内容都是基于微软的Visual Studio下开发的Win32平台,所以下边我们介绍Visual Studio下SQLite数据库开发环境设置. 详细而言我们有两种方式能够在Visual Studio中SQLite数据库:使用SQLite源码文件和使用Cocos2d-x提供的库文件.1.使用SQLite源码文件SQLite是C编写的开源的数据库,我们能够在http://www.sqlite.org/download.html网址下载最新的SQLite源码,如我下载的sqlite-a