久久久久久久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. 主站蜘蛛池模板: 干干天天 | 国产精品久久久久久一区二区三区 | 日韩欧美中文在线 | 久热9| 美女天天操| 欧美最猛黑人xxxx黑人 | 日本视频一区二区三区 | 高清av在线 | 波霸ol一区二区 | 国产亚洲精品精品国产亚洲综合 | 久久精品国产久精国产 | 亚洲91| 成人在线视频网址 | 高清黄色 | 亚洲视频免费在线 | 日韩成人精品视频 | 国产精品免费观看 | 中文字幕一区在线 | 亚洲欧洲在线视频 | 国内精品视频一区二区三区 | 亚洲精品大全 | 伦理午夜电影免费观看 | 成人动漫视频网站 | 国产精品久久久久久久免费大片 | 国产亚洲精品久久久久动 | 91视频在线| 精品一二三区 | 天天操天天干天天曰 | 精品久久影院 | 亚洲欧美中文日韩在线v日本 | 亚洲一区毛片 | 麻豆a级片 | 成人一级毛片 | 日韩影院在线 | 超碰男人天堂 | 最新中文字幕第一页视频 | 国产精品国产成人国产三级 | 亚洲免费在线 | 91在线影院 | 欧美精品一区二区三区在线 | 高清一区二区三区 |