久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

  • <i id='TlKwH'><tr id='TlKwH'><dt id='TlKwH'><q id='TlKwH'><span id='TlKwH'><b id='TlKwH'><form id='TlKwH'><ins id='TlKwH'></ins><ul id='TlKwH'></ul><sub id='TlKwH'></sub></form><legend id='TlKwH'></legend><bdo id='TlKwH'><pre id='TlKwH'><center id='TlKwH'></center></pre></bdo></b><th id='TlKwH'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='TlKwH'><tfoot id='TlKwH'></tfoot><dl id='TlKwH'><fieldset id='TlKwH'></fieldset></dl></div>

    1. <small id='TlKwH'></small><noframes id='TlKwH'>

      • <bdo id='TlKwH'></bdo><ul id='TlKwH'></ul>
      <tfoot id='TlKwH'></tfoot>

      1. <legend id='TlKwH'><style id='TlKwH'><dir id='TlKwH'><q id='TlKwH'></q></dir></style></legend>

      2. 在沒有構建工具(如 grunt 和 gulp)的情況下使用 J

        Use Javascript frameworks without build tools like grunt and gulp?(在沒有構建工具(如 grunt 和 gulp)的情況下使用 Javascript 框架?)
          <tbody id='Wellf'></tbody>

        <small id='Wellf'></small><noframes id='Wellf'>

            <bdo id='Wellf'></bdo><ul id='Wellf'></ul>
          • <i id='Wellf'><tr id='Wellf'><dt id='Wellf'><q id='Wellf'><span id='Wellf'><b id='Wellf'><form id='Wellf'><ins id='Wellf'></ins><ul id='Wellf'></ul><sub id='Wellf'></sub></form><legend id='Wellf'></legend><bdo id='Wellf'><pre id='Wellf'><center id='Wellf'></center></pre></bdo></b><th id='Wellf'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='Wellf'><tfoot id='Wellf'></tfoot><dl id='Wellf'><fieldset id='Wellf'></fieldset></dl></div>

            1. <legend id='Wellf'><style id='Wellf'><dir id='Wellf'><q id='Wellf'></q></dir></style></legend>

            2. <tfoot id='Wellf'></tfoot>

                  本文介紹了在沒有構建工具(如 grunt 和 gulp)的情況下使用 Javascript 框架?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  限時送ChatGPT賬號..

                  我正在嘗試一些現代 Javascript 框架,例如 Angular、React、Vue 和 Ember,它們都希望我使用構建工具,例如 npmgruntgulpmaven

                  I'm trying out some modern Javascript frameworks like Angular, React, Vue and Ember, and they all want me to use build tools like npm, grunt, gulp, maven, etc.

                  Web 編程曾經很有趣.只需更改一些文件,刷新瀏覽器,看看它是否有效.現在每次我改變一些東西,我都必須重新構建它,這需要相當長的時間.我真的很討厭看到網絡編程變成了這樣.我知道構建甚至可以使用這些工具自動完成,監視文件更改等,但仍然很糟糕.

                  Web-programming used to be fun. Just change some files, refresh the browser and see if it works. Now every time I change something, I have to build it again, which takes quite some time. I really hate to see that web-programming has become like this. I know the building can even be done automatically with these tools watching for file-changes, etc., but still, it just sucks.

                  我的問題是,當我想使用上述框架之一時,我應該在每次運行時都使用構建工具,還是只需要這些用于部署和測試目的(或者根本不需要) ?

                  My question is, when I want to use one of the mentioned frameworks, am I supposed to use the build-tools every time I want to run, or do I just need these for deployment and testing purposes (or not at all) ?

                  推薦答案

                  有些庫需要構建代碼,有些則不需要.從您擁有的列表中,它們在技術上都不需要它.它們都可以通過簡單地將 js 文件包含在 <script> 標記中來工作.但是,有許多框架/庫(例如 sass 或 coffeescript)確實需要構建工具,因為必須將源代碼編譯為瀏覽器所理解的 html/javascript/css.

                  Some libraries require building the code, some don't. From the list that you had, none of them require it technically. They can all work by simply including the js file in a <script> tag. However, there are many frameworks/libraries (such as sass or coffeescript) which do require a build tool, because the source code must be compiled to become html/javascript/css as understood by the browser.

                  此外,沒有任何理由反對使用構建工具.正如您所說,它們可以在文件更改時自動運行,因此它們實際上只是在后臺.

                  Also, there's not really any reason to be so against using build tools. As you said, they can run automatically on file change, so they're really just in the background.

                  這篇關于在沒有構建工具(如 grunt 和 gulp)的情況下使用 Javascript 框架?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Browserify, Babel 6, Gulp - Unexpected token on spread operator(Browserify,Babel 6,Gulp - 傳播運算符上的意外令牌)
                  Is it possible to pass a flag to Gulp to have it run tasks in different ways?(是否可以將標志傳遞給 Gulp 以使其以不同的方式運行任務?)
                  Why do we need to install gulp globally and locally?(為什么我們需要在全局和本地安裝 gulp?)
                  How to run Gulp tasks sequentially one after the other(如何一個接一個地依次運行 Gulp 任務)
                  Stylesheet not loaded because of MIME-type(由于 MIME 類型而未加載樣式表)
                  Visual Studio 2015 crashes when opening Javascript files(打開 Javascript 文件時 Visual Studio 2015 崩潰)

                      <tfoot id='G5rxw'></tfoot>

                      <small id='G5rxw'></small><noframes id='G5rxw'>

                          <bdo id='G5rxw'></bdo><ul id='G5rxw'></ul>
                            <tbody id='G5rxw'></tbody>
                          <i id='G5rxw'><tr id='G5rxw'><dt id='G5rxw'><q id='G5rxw'><span id='G5rxw'><b id='G5rxw'><form id='G5rxw'><ins id='G5rxw'></ins><ul id='G5rxw'></ul><sub id='G5rxw'></sub></form><legend id='G5rxw'></legend><bdo id='G5rxw'><pre id='G5rxw'><center id='G5rxw'></center></pre></bdo></b><th id='G5rxw'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='G5rxw'><tfoot id='G5rxw'></tfoot><dl id='G5rxw'><fieldset id='G5rxw'></fieldset></dl></div>
                          <legend id='G5rxw'><style id='G5rxw'><dir id='G5rxw'><q id='G5rxw'></q></dir></style></legend>

                          1. 主站蜘蛛池模板: 国产精品国产a | 中国免费黄色片 | 欧美日韩在线一区二区 | 日韩中文字幕一区二区 | 一区二区在线 | 96久久久久久 | 国产99视频精品免视看9 | 午夜影视 | 久久久蜜桃 | 中文字幕亚洲精品 | 99国内精品 | 另类在线 | 久久精品国产一区二区电影 | 精品一区二区三区视频在线观看 | 一区二区三区在线 | 欧 | 国产精品一区二区三区免费观看 | 国产伦精品一区二区 | 久久69精品久久久久久久电影好 | 女人牲交视频一级毛片 | www国产精 | 国产 日韩 欧美 制服 另类 | 在线观看国产精品视频 | 国产精品高潮呻吟久久 | 亚洲福利在线观看 | 亚洲精品视频在线观看视频 | www.中文字幕.com | 黄色大片在线视频 | 久久久久久久久久久一区二区 | 国产在线a| xxx.在线观看 | 日日日日操 | 国产欧美日韩一区二区三区在线观看 | 国产精品久久二区 | 国产精品1区2区 | 日韩成人免费视频 | 亚洲一区视频在线 | 日本中文字幕日韩精品免费 | 人人干人人艹 | 亚洲国产精品成人综合久久久 | 一级毛片免费完整视频 | 日韩日b视频 |