๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ


Web

(32)
npm ์„ค์น˜ ์˜ค๋ฅ˜ SELF_SIGNED_CERT_IN_CHAIN ํ•ด๊ฒฐ npm config set strict-ssl false -g ์ถœ์ฒ˜ https://code-gray.tistory.com/24 npm ์„ค์น˜ ์‹œ SELF_SIGNED_CERT_IN_CHAIN ์—๋Ÿฌ ํ•ด๊ฒฐ ๋ฐฉ๋ฒ• npm install ์„ ํ•˜๋‹ค๋ณด๋ฉด ์•„๋ž˜์™€ ๊ฐ™์€ ์—๋Ÿฌ๊ฐ€ ๋ฐœ์ƒ ํ•  ๋•Œ๊ฐ€ ์žˆ๋‹ค. npm ERR! code SELF_SIGNED_CERT_IN_CHAIN npm ERR! errno SELF_SIGNED_CERT_IN_CHAIN npm ERR! request to https://registry.npmjs.or.. code-gray.tistory.com
[PHP] https://wikidocs.net/116921 3.11. JSON ๋‹ค๋ฃจ๊ธฐ php ์—์„œ JSON ๋ฐ์ดํ„ฐ ํ˜•์‹์„ ๋‹ค๋ฃจ๋Š” ๋ฐฉ๋ฒ•์„ ์•Œ์•„๋ณธ๋‹ค. ``` `value1`, 'key2' => 2, 'key3' => array( ... wikidocs.net
[Vue.js] Grid https://www.npmjs.com/package/vue-excel-editor vue-excel-editor Vue2 plugin for displaying and editing the array-of-object in Excel style. Latest version: 1.5.5, last published: 6 months ago. Start using vue-excel-editor in your project by running `npm i vue-excel-editor`. There is 1 other project in the npm registry u www.npmjs.com https://www.ag-grid.com/vue-data-grid/getting-started/ Vue Data..
[Vue.js] vue-router.js cdn ์˜ค๋ฅ˜ cdn ์ฃผ์†Œ๋ฅผ ์“ฐ๊ณ  ์žˆ์—ˆ๋Š”๋ฐ ๊ฐ‘์ž๊ธฐ ์•ˆ๋ฌ์Œ https://v3.router.vuejs.org/installation.html Installation | Vue Router Installation Direct Download / CDN https://unpkg.com/vue-router/dist/vue-router.js (opens new window) Unpkg.com (opens new window) provides npm-based CDN links. The above link will always point to the latest release on npm. You can also use a specific vers v3.router.vuejs.org ํ™ˆํŽ˜์ด์ง€์—๋„ ์ž˜๋ชป ๊ธฐ์žฌ ๋˜์žˆ๋Š”๊ฑฐ ๊ฐ™์Œ (v3...
[Vue] router multiple paths, redirect to default path var router = new VueRouter({ //mode: 'history', routes : [ { path: '/', redirect: '/profile' }, { path: '/order', component: Order }, { path: '/profile', component: Profile, children: [ { path: '', component: ProfileTab1 }, { path: 'tab1', component: ProfileTab1 }, { path: 'tab2', component: ProfileTab2 }, ] }, { path: '*', component: NotFoundComponent } ] }); alias ์‚ฌ์šฉ routes: [ { path: '/foo', ..
[JavasScript] POST ๋ณด๋‚ด๊ธฐ var form = document.createElement("form"); form.setAttribute("method", "post"); form.setAttribute("action", '/comp'); const params = {'uid': uid} //ํžˆ๋“ ์œผ๋กœ ๊ฐ’์„ ์ฃผ์ž…์‹œํ‚จ๋‹ค. for(var key in params) { var hiddenField = document.createElement("input"); hiddenField.setAttribute("type", "hidden"); hiddenField.setAttribute("name", key); hiddenField.setAttribute("value", params[key]); form.appendChild(hiddenField..
[Laravel] laravel/fortify github.com/laravel/fortify laravel/fortify Contribute to laravel/fortify development by creating an account on GitHub. github.com
Laravel ์„ค์น˜ (Windows, WSL 2 - Ubuntu) laravel.com/docs/8.x#getting-started-on-windows Installation - Laravel - The PHP Framework For Web Artisans Become a Laravel Partner Laravel Partners are elite shops providing top-notch Laravel development and consulting. Each of our partners can help you craft a beautiful, well-architected project. laravel.com - Docker Desktop ์„ค์น˜ www.docker.com/products/docker-desktop Docker Desktop for Mac and..