#まず見るべき
以下のURLは、常に更新されているコンテンツです。
- ドキュメント日本語版
- 日本語版ドキュメントはVue.js日本語コミュニティによって常に更新されています。ミスがあれば、是非jp.vuejs.orgまでプルリクエストを頂けると助かります。
- 質問や議論は日本語コミュニティのSlackが活発です。
- はじめに読むものとしては、下記のコンテンツが良いでしょう。
- 概要
| const myNumberRef = useRef(0); | |
| myNumberRef.current += 1; |
| import 'package:flutter/material.dart'; | |
| import 'package:simple_inherit/state_container.dart'; | |
| class UpdateUserScreen extends StatelessWidget { | |
| static final GlobalKey<FormState> formKey = new GlobalKey<FormState>(); | |
| static final GlobalKey<FormFieldState<String>> firstNameKey = | |
| new GlobalKey<FormFieldState<String>>(); | |
| static final GlobalKey<FormFieldState<String>> lastNameKey = | |
| new GlobalKey<FormFieldState<String>>(); | |
| static final GlobalKey<FormFieldState<String>> emailKey = |
| package main | |
| import ( | |
| "database/sql" | |
| "strconv" | |
| "log" | |
| "net/http" | |
| "fmt" | |
| "bytes" | |
| "gopkg.in/gin-gonic/gin.v1" |
| var Loader = (function () { | |
| function Loader(options) { | |
| this.options = options; | |
| if (resource.scripts && resource.baseUrl) { | |
| for (var i = 0; i < this.options.scripts.length; i++) { | |
| this.load('js', this.options.scripts[i]); | |
| } | |
| for (var i = 0; i < this.options.stylesheets.length; i++) { | |
| this.load('css', this.options.stylesheets[i]); | |
| } |
#まず見るべき
以下のURLは、常に更新されているコンテンツです。
| /*! | |
| * gulp | |
| * $ npm install gulp-ruby-sass gulp-autoprefixer gulp-cssnano gulp-jshint gulp-concat gulp-uglify gulp-imagemin gulp-notify gulp-rename gulp-livereload gulp-cache del --save-dev | |
| */ | |
| // Load plugins | |
| var gulp = require('gulp'), | |
| sass = require('gulp-ruby-sass'), | |
| autoprefixer = require('gulp-autoprefixer'), | |
| cssnano = require('gulp-cssnano'), |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| // XXX should be standard (and named clone, after Java?) | |
| Object.prototype.copy = function () { | |
| let o = {} | |
| for (let i in this) | |
| o[i] = this[i] | |
| return o | |
| } | |
| // Containment testing for arrays and strings that should be coherent with their iterator. | |
| Array.prototype.contains = String.prototype.contains = function (e) { |