archlinux.md

Install Archlinux from beggining Boot from iso file 将安装的your_arch_image.iso文件放在win_drive的根目录,假设这里是ntfs格式 使用grub4dos来引导最小镜像文件 root (hd0,0) kernel /vmlinuz archisolabel=ARCH2016 initrd /archiso.img 启动后会进入系统安全模式,在这里执行 mkdir /mnt/iso mount -r -t ntfs /dev/win_drive /mnt/iso modprobe loop losetup /dev/loop6 /mnt/iso/your_arch_image.iso ln -s /dev/loop6 /dev/disks/by-label/ARCH2016 exit 这样就可以启动安装光盘了! Prepare your partition Using fdisk to create partition table fdisk /dev/sda n # creating new partion w # write Format partition mkfs.ext4 /dev/sda1 Mount new partition as install target mount /dev/sda1 /mnt Setting network Setting network with netctl cp /etc/netctl/examples/ethernet-static /etc/netctl/office netctl list netctl start office office profie as follows Description='A basic dhcp ethernet connection' Interface=eth0 Connection=ethernet IP=dhcp ForceConnect=yes DHCPClient="dhclient" Setting network behind proxy NAT Forward ssh to the virtual machine with port forward And don’t forget to export your new environment variables
Read more →

babel-loader.md

babel-loader Babel is a compiler for writing next generation JavaScript. This package allows transpiling JavaScript files using Babel and webpack. Notes: Issues with the output should be reported on the babel issue tracker; Installation npm install babel-loader babel-core babel-preset-es2015 babel-preset-react --save-dev Note: npm will deprecate auto-installing of peerDependencies on the next major release, so required peer dependencies like babel-core and webpack will have to be listed explicitly in your package.json.
Read more →

basic.md

Read more →

bigdata.md

Read more →

browserify.md

browserify require('modules') in the browser Use a node-style require() to organize your browser code and load modules installed by npm. browserify will recursively analyze all the require() calls in your app in order to build a bundle you can serve up to the browser in a single <script> tag. getting started If you’re new to browserify, check out the browserify handbook and the resources on browserify.org. Check out browserify search to find browserify-compatible packages on npm.
Read more →