Browse Results

Showing 53,001 through 53,025 of 54,344 results

Web Development with Clojure

by Dmitri Sotnikov Scot Brown

Today, developers are increasingly adopting Clojure as a web-development platform. See for yourself what makes Clojure so desirable, as you create a series of web apps of growing complexity, exploring the full process of web development using a modern functional language. This fully updated third edition reveals the changes in the rapidly evolving Clojure ecosystem and provides a practical, complete walkthrough of the Clojure web-stack. Stop developing web apps with yesterday's tools. Today, developers are increasingly adopting Clojure as a web-development platform. See for yourself what makes Clojure so desirable, as you work hands-on with Clojure and build a series of web apps of increasing size and scope, culminating in a professional grade web app using all the techniques you've learned along the way. This fully updated third edition will get you up to speed on the changes in the rapidly evolving Clojure ecosystem - the many new libraries, tools, and best practices. Build a fully featured SPA app with re-frame, a popular front-end framework for ClojureScript supporting a functional style MVC approach for managing the UI state in Single-Page Application-style applications. Gain expertise in the powerful Ring stack using the Luminus framework. Learn how Clojure works with databases and speeds development of RESTful services. See why ClojureScript is rapidly becoming a popular front-end platform, and use ClojureScript with the popular re-frame library to build single-page applications. Whether you're already familiar with Clojure or completely new to the language, you'll be able to write web applications with Clojure at a professional level.

Web Development with Django: A definitive guide to building modern Python web applications using Django 4, 2nd Edition

by Ben Shaw Saurabh Badhwar Chris Guest Bharath Chandra S

Work through realistic case studies to create your own websites easily, securely, and quicklyPurchase of the print or Kindle book includes a free PDF eBookKey FeaturesUnderstand Django functionality and the Model-View-Template (MVT) paradigmCreate and iteratively build a book review website, adding features as you build your knowledgeExplore advanced concepts such as REST API implementation and third-party module integrationBook DescriptionDo you want to develop reliable and secure applications that stand out from the crowd without spending hours on boilerplate code? You've made the right choice trusting the Django framework, and this book will tell you why. Often referred to as a “batteries included” web development framework, Django comes with all the core features needed to build a standalone application. Web Development with Django will take you through all the essential concepts and help you explore its power to build real-world applications using Python. Throughout the book, you'll get the grips with the major features of Django by building a website called Bookr – a repository for book reviews. This end-to-end case study is split into a series of bitesize projects presented as exercises and activities, allowing you to challenge yourself in an enjoyable and attainable way. As you advance, you'll acquire various practical skills, including how to serve static files to add CSS, JavaScript, and images to your application, how to implement forms to accept user input, and how to manage sessions to ensure a reliable user experience. You'll cover everyday tasks that are part of the development cycle of a real-world web application. By the end of this Django book, you'll have the skills and confidence to creatively develop and deploy your own projects.What you will learnCreate a new application and add models to describe your dataUse views and templates to control behavior and appearanceImplement access control through authentication and permissionsDevelop practical web forms to add features such as file uploadsBuild a RESTful API and JavaScript code that communicates with itConnect to a database such as PostgreSQLWho this book is forThis book is for programmers looking to enhance their web development skills using the Django framework. To fully understand the concepts explained in this book, basic knowledge of Python programming as well as familiarity with JavaScript, HTML, and CSS is assumed.

Web Development with Django: Learn to build modern web applications with a Python-based framework

by Ben Shaw Andrew Bird Saurabh Badhwar Bharath Chandra S Chris Guest

Learn how to create your own websites simply, safely, and quickly with Django by tackling practical activities based on realistic case studiesKey FeaturesUnderstand Django functionality and the Model-View-Template (MVT) paradigmCreate and iteratively build a book review website, adding features as you build your knowledgeExplore advanced concepts such as REST API implementation and third-party module integrationBook DescriptionDo you want to develop reliable and secure applications which stand out from the crowd, rather than spending hours on boilerplate code? Then the Django framework is where you should begin. Often referred to as a 'batteries included' web development framework, Django comes with all the core features needed to build a standalone application. Web Development with Django takes this philosophy and equips you with the knowledge and confidence to build real-world applications using Python. Starting with the essential concepts of Django, you'll cover its major features by building a website called Bookr – a repository for book reviews. This end-to-end case study is split into a series of bitesize projects that are presented as exercises and activities, allowing you to challenge yourself in an enjoyable and attainable way. As you progress, you'll learn various practical skills, including how to serve static files to add CSS, JavaScript, and images to your application, how to implement forms to accept user input, and how to manage sessions to ensure a reliable user experience. Throughout this book, you'll cover key daily tasks that are part of the development cycle of a real-world web application. By the end of this book, you'll have the skills and confidence to creatively tackle your own ambitious projects with Django.What you will learnCreate a new application and add models to describe your dataUse views and templates to control behavior and appearanceImplement access control through authentication and permissionsDevelop practical web forms to add features such as file uploadsDevelop a RESTful API and JavaScript code that communicates with itConnect to a database such as PostgreSQLWho this book is forWeb Development with Django is designed for programmers who want to gain web development skills with the Django framework. To fully understand the concepts explained in this book, you must have basic knowledge of Python programming, as well as familiarity with JavaScript, HTML, and CSS.

Web Development with Django Cookbook

by Aidas Bendoraitis

If you have created websites with Django, but you want to sharpen your knowledge and learn some good approaches for how to treat different aspects of web development, you should definitely read this book. It is intended for intermediate and professional Django users who need to build projects which must be multilingual, functional on devices of different screen sizes, and which scale over time.

Web Development with Django Cookbook - Second Edition

by Aidas Bendoraitis

Over 70 practical recipes to help you create scalable websites using the Django 1.8 framework About This Book * This is the latest book on the market that will help you take advantage of the new features added to Django 1.8 * This book consists of recipes of varying complexities to help you create multilingual, responsive, and scalable websites with Django * This updated edition teaches you major Django functions and will help you improve your skills by developing models, forms, views, and templates Who This Book Is For This book is for intermediate-level and professional Django users who need to build projects that are multilingual, functional on devices of different screen sizes, and that scale over a period of time. If you have created websites with Django but you want to sharpen your knowledge and learn some good approaches to different aspects of web development, you should definitely read this book. What You Will Learn * Get started with the basic configuration necessary to start any Django project * Build a database structure out of reusable model mixins * Manage forms and views and get to know some useful patterns that are used to create them * Create handy template filters and tags that you can reuse in every project * Integrate your own functionality into the Django CMS * Manage hierarchical structures with MPTT * Import data from local sources and external web services as well as exporting your data to third parties * Implement a multilingual search with Haystack * Test and deploy your project efficiently In Detail Django is a web framework that was designed to strike a balance between rapid web development and high performance. It has the capacity to handle applications with high levels of user traffic and interaction, and can integrate with massive databases on the backend, constantly collecting and processing data in real time. Through this book, you'll discover that collecting data from different sources and providing it to others in different formats isn't as difficult as you thought. It follows a task-based approach to guide you through all the web development processes using the Django framework. We'll start by setting up the virtual environment for a Django project and configuring it. Then you'll learn to write reusable pieces of code for your models and find out how to manage database schema changes using South migrations. After that, we'll take you through working with forms and views to enter and list data. With practical examples on using templates and JavaScript together, you will discover how to create the best user experience. In the final chapters, you'll be introduced to some programming and debugging tricks and finally, you will be shown how to test and deploy the project to a remote dedicated server. By the end of this book, you will have a good understanding of the new features added to Django 1.8 and be an expert at web development processes. Style and approach Every chapter consists of practical examples and a mix of basic and advanced recipes that will guide you through the entire web development process, starting from project configuration and taking you right through to deployment.

Web Development with Go

by Shiju Varghese

Take a deep dive into web development using the Go programming language to build web apps and RESTful services to create reliable and efficient software. Web Development with Go provides Go language fundamentals and then moves on to advanced web development concepts and successful deployment of Go web apps to the cloud. Web Development with Go will teach you how to develop scalable real-world web apps, RESTful services, and backend systems with Go. The book starts off by covering Go programming language fundamentals as a prerequisite for web development. After a thorough understanding of the basics, the book delves into web development using the built-in package, net/http. With each chapter you''ll be introduced to new concepts for gradually building a real-world web system. The book further shows you how to integrate Go with other technologies. For example, it provides an overview of using MongoDB as a means of persistent storage, and provides an end-to-end REST API sample as well. Developers looking for a full-fledged web development framework for building web apps will be introduced to Beego. The book then moves on to demonstrate how to deploy web apps to the cloud using the Google Cloud platform. Finally, the book introduces Docker, a revolutionary container technology platform for deploying containerized Go web apps to the cloud. Web Development with Go provides: Fundamentals for building real-world web apps in Go Thorough coverage of prerequisites and practical code examples Demo web apps for attaining a deeper understanding of web development A reference REST API app which can be used to build scalable real-world backend services in Go A thorough demonstration of deploying web apps to the Cloud using the Google Cloud platform, and Docker for deploying Go servers Go is a high-performance language while providing greater level of developer productivity, therefore Web Development with Go equips you with the necessary skills and knowledge required for effectively building robust and efficient web apps by leveraging the features of Go. What you''ll learn Fundamentals of the Go programming language How to develop web apps and RESTful services using the Go internal package net/http How to persist data into MongoDB from Go web apps How to develop web apps using Go third-party packages How to deploy Go web apps to the Google Cloud platform Who this book is for Intermediate and advanced web developers looking to gain a deep insight of Go. Table of Contents Chapter 1: Getting Started With Go Chapter Goal: Introduces the reader to the Go programming language, and explains how to set up Go on the user''s machine. This chapter will also provide basic sample programs with Go. Introducing Go Why Go Installing Go Sample programs with Go Summary Chapter 2: Go Fundamentals Chapter Goal: Provide tutorials for understanding the features of Go with the help of practical samples. 1. Packages 2. Go Tools 3. Array 4. Slice 5. Map 6. Defer 7. Panic 8. Recover Summary Chapter 3: User Defined Types and Concurrency Chapter Goal: This chapter further explores the features of Go. Unique features such as user-defined types and concurrency will be explained in detail with the help of examples and samples. Struct Interface Concurrency Goroutines Channels Summary Chapter 4: Getting Started with Web Development Chapter Goal: This chapter introduces the reader to web development in Go with the internal package net/http. Also, complex routing scenarios will be covered. The chapter will employ a static web server and basic web app for practical understanding of the process. Introducing net/http package Build a simple web server http. Handler Interface Build a static web server Build a basic web app URL router Gorilla mux URL router Summary Chapter 5: Go Templates Chapter Goal: This chapter introduces the readers to Go templates with the internal package html/template. Also, the reader will learn how to build a web app practically using html/template with net/http package. Introducing the html/template pa...

Web Development with Jade

by Sean Lang

This is a step-by step, tutorial-based book which will enable web developers to explore the functionalities of Jade and learn how to use it to write certain functions and processes for web development. This book is for web developers with at least a basic understanding of HTML and JavaScript. It will enable you to write an easier form of language that then compiles into HTML.

Web Development with jQuery

by Richard York

Newly revised and updated resource on jQuery's many features and advantages Web Development with jQuery offers a major update to the popular Beginning JavaScript and CSS Development with jQuery from 2009. More than half of the content is new or updated, and reflects recent innovations with regard to mobile applications, jQuery mobile, and the spectrum of associated plugins. Readers can expect thorough revisions with expanded coverage of events, CSS, AJAX, animation, and drag and drop. New chapters bring developers up to date on popular features like jQuery UI, navigation, tables, interactive capabilities, and audio and video. The book focuses on the new features of jQuery that improve performance and speed, providing huge advantages over traditional JavaScript. Offers new and revised content throughout the book, which focuses on the most recent features and capabilities of jQuery Serves as an essential instructional tool for web developers with JavaScript and CSS knowledge who want to learn more Advises readers on how to best use jQuery's powerful, easy-to-use features to create dynamic web pages and web applications This resource provides a deep understanding of jQuery and sets readers up for successful interactions with all it has to offer.

Web Development with Julia and Genie: A hands-on guide to high-performance server-side web development with the Julia programming language

by Ivo Balbaert Adrian Salceanu Logan Kilpatrick

Get a practical overview of web development in Julia and learn how to build MVC applications with a REST API, and an interactive data dashboard using the Genie web frameworkKey FeaturesA tutorial on web development from Julia expert, Ivo Balbaert and the creator of the Genie framework, Adrian SalceanuA step-by-step approach to building a complete web app with the Genie frameworkDevelop secure and fast web apps using server-side development on JuliaBook DescriptionJulia's high-performance and scalability characteristics and its extensive number of packages for visualizing data make it an excellent fit for developing web apps, web services, and web dashboards. The two parts of this book provide complete coverage to build your skills in web development.First, you'll refresh your knowledge of the main concepts in Julia that will further be used in web development. Then, you'll use Julia's standard web packages and examine how the building blocks of the web such as TCP-IP, web sockets, HTTP protocol, and so on are implemented in Julia's standard library. Each topic is discussed and developed into code that you can apply in new projects, from static websites to dashboards. You'll also understand how to choose the right Julia framework for a project. The second part of the book talks about the Genie framework. You'll learn how to build a traditional to do app following the MVC design pattern. Next, you'll add a REST API to this project, including testing and documentation. Later, you'll explore the various ways of deploying an app in production, including authentication functionality. Finally, you'll work on an interactive data dashboard, making various chart types and filters.By the end of this book, you'll be able to build interactive web solutions on a large scale with a Julia-based web framework.What you will learnUnderstand how to make a web server with HTTP.jl and work with JSON data over the webDiscover how to build a static website with the Franklin frameworkExplore Julia web development frameworks and work with themUncover the Julia infrastructure for development, testing, package management, and deploymentDevelop an MVC web app with the Genie frameworkUnderstand how to add a REST API to a web appCreate an interactive data dashboard with charts and filtersTest, document, and deploy maintainable web applications using JuliaWho this book is forThis book is for beginner to intermediate-level Julia programmers who want to enhance their skills in designing and developing large-scale web applications. The book helps you adopt Genie without any prior experience with the framework. Julia programming experience and a beginner-level understanding of web development concepts are required.

Web Development with MongoDB and Node.js

by Jason Krol

This book is designed for developers of any skill level that want to get up and running using Node.js and MongoDB to build full featured web applications. A basic understanding of JavaScript and HTML is the only requirement for this book.

Web Development with MongoDB and Node - Third Edition

by Jason Krol Mithun Satheesh Bruno Joseph D'Mello

Use the two popular web development stacks, Node.js and MongoDB, to build full-featured web applications About This Book • Learn the new ECMAScript along with Node 8 and MongoDB to make your application more effective. • Get the up-to-date information required to launch your first application prototype using the latest versions of Node.js and MongoDB. • A practical guide with clear instructions to designing and developing a complete web application from start to finish using trending frameworks such as angular4 and hapi Who This Book Is For The book is designed for JavaScript developers of any skill level who want to get up-and-running using Node.js and MongoDB to build full-featured web applications. A basic understanding of JavaScript and HTML is the only prerequisite for this book. What You Will Learn • Work with Node.js building blocks • Write and configure a web server using Node.js powered by the Express.js framework • Build dynamic HTML pages using the Handlebars template engine • Persist application data using MongoDB and Mongoose ODM • Test your code using automated testing tools such as the Mocha framework • Automate test cases using Gulp • Reduce your web development time by integrating third-party tools for web interaction. • Deploy a development environment to the cloud using services such as Heroku, Amazon Web Services, and Microsoft Azure • Explore single-page application frameworks to take your web applications to the next level In Detail Node.js builds fast, scalable network applications while MongoDB is the perfect fit as a high-performance, open source NoSQL database solution. The combination of these two technologies offers high performance and scalability and helps in building fast, scalable network applications. Together they provide the power for manage any form of data as well as speed of delivery. This book will help you to get these two technologies working together to build web applications quickly and easily, with effortless deployment to the cloud. You will also learn about angular 4, which consumes pure JSON APOIs from a hapi server. The book begins by setting up your development environment, running you through the steps necessary to get the main application server up-and-running. Then you will see how to use Node.js to connect to a MongoDB database and perform data manipulations. From here on, the book will take you through integration with third-party tools to interact with web apps. You will see how to use controllers and view models to generate reusable code that will reduce development time. Toward the end, the book supplies tests to properly execute your code and take your skills to the next level with the most popular frameworks for developing web applications. By the end of the book, you will have a running web application developed with MongoDB, Node.js, and some of the most powerful and popular frameworks. Style and approach A practical guide with clear instructions to designing and developing a complete web application from start to finish

Web Development with MongoDB and NodeJS - Second Edition

by Jason Krol Bruno Joseph D'Mello Mithun Satheesh

Build an interactive and full-featured web application from scratch using Node.js and MongoDBAbout This BookConfigure your development environment to use Node.js and MongoDBUse Node.js to connect to a MongoDB database and perform data manipulationsA practical guide with clear instructions to design and develop a complete web application from start to finishWho This Book Is ForThis book is designed for JavaScript developers of any skill level that want to get up and running using Node.js and MongoDB to build full-featured web applications. A basic understanding of JavaScript and HTML is the only requirement for this book.What You Will LearnConfigure your development environment to use Node.js and MongoDBWrite and configure a web server using Node.js powered by the Express.js frameworkBuild dynamic HTML pages using the Handlebars template enginePersist application data using MongoDB and Mongoose ODMTest your code using automated testing tools such as the Mocha frameworkDeploy the development environment to the cloud using services such as Heroku, Amazon Web Services, and Microsoft AzureExplore Single-Page application frameworks to take your web applications to the next levelIn DetailNode.js and MongoDB are quickly becoming one of the most popular tech stacks for the web. Powered by Google's V8 engine, Node.js caters to easily building fast, scalable network applications while MongoDB is the perfect fit as a scalable, high-performance, open source NoSQL database solution. Using these two technologies together, web applications can be built quickly and easily and deployed to the cloud with very little difficulty.The book will begin by introducing you to the groundwork needed to set up the development environment. Here, you will quickly run through the steps necessary to get the main application server up and running. Then you will see how to use Node.js to connect to a MongoDB database and perform data manipulations.From here on, the book will take you through integration with third-party tools for interaction with web apps. It then moves on to show you how to use controllers and view models to generate reusable code that will reduce development time. Toward the end of the book, we will cover tests to properly execute the code and some popular frameworks for developing web applications.By the end of the book, you will have a running web application developed with MongoDB and Node.js along with it's popular frameworks.Style and approachAn easy guide to Node.js and MongoDB, which will quickly introduce you to the relevant concepts by taking you through the different steps involved in building a full-fledged web application.

Web Development with Node and Express

by Ethan Brown

The Express web application framework for Node strikes the ideal balance between a robust framework and no framework at all. Many web frameworks try to do so much that they become inflexible and overly complicated, having a negative effect on both learning curve and ability to customize. Express takes a much more agnostic approach, allowing developers a free hand in their architecture choices. It is a joy to work with, and this book is designed not only to introduce the framework, but also to provide some guidance about how to go about doing things that more elaborate (and inflexible) frameworks provide.Even though there is plenty of material on the topic of Express alone, Web Development with Node and Express will provide you additional value because it also covers best practices in web architecture. Ideal for those new to JavaScript, this book also shows experienced JavaScript developers have started to look towards Express as a viable alternative for web development.As someone who deals every day with the complexities of real-world websites, author Ethan Brown offers tremendous wisdom and experience for people interested in producing high-quality, fast, maintainable websites that are friendly to SEO and analytics.This book covers Express 4.0.

Web Development with Node and Express: Leveraging the JavaScript Stack

by Ethan Brown

Build dynamic web applications with Express, a key component of the Node/JavaScript development stack. In this updated edition, author Ethan Brown teaches you Express fundamentals by walking you through the development of an example application. This hands-on guide covers everything from server-side rendering to API development suitable for usein single-page apps (SPAs).Express strikes a balance between a robust framework and no framework at all, allowing you a free hand in your architecture choices. Frontend and backend engineers familiar with JavaScript will also learn best practices for building multipage and hybrid web apps with Express. Pick up this book anddiscover new ways to look at web development.Create a templating system for rendering dynamic dataDive into request and response objects, middleware, and URL routingSimulate a production environment for testingPersist data in document databases with MongoDB and relational databases with PostgreSQLMake your resources available to other programs with APIsBuild secure apps with authentication, authorization, and HTTPSIntegrate with social media, geolocation, and moreImplement a plan for launching and maintaining your appLearn critical debugging skills

Web Development with ReasonML: Type-Safe, Functional Programming for JavaScript Developers

by J. David Eisenberg

ReasonML is a new, type-safe, functional language that compiles to efficient, readable JavaScript. ReasonML interoperates with existing JavaScript libraries and works especially well with React, one of the most popular front-end frameworks. Learn how to take advantage of the power of a functional language while keeping the flexibility of the whole JavaScript ecosystem. Move beyond theory and get things done faster and more reliably with ReasonML today. ReasonML is a new syntax for OCaml, a battle-tested programming language used in industry for over 20 years. Designed to be familiar to JavaScript programmers, ReasonML code compiles to highly readable JavaScript. With ReasonML, you get OCaml's powerful functional programming features: a strong static type system with an excellent type inference engine, pattern matching, and features for functional programming with immutable variables. ReasonML also allows flexibility with opt-in side effects, mutation, and object-oriented programming. ReasonML hits the sweet spot between the pure theoretical world and the laissez-faire approach of JavaScript. Start using ReasonML's powerful type system as you learn the essentials of the language: variables and arithmetic operations. Gain expressive power as you write functions with named parameters and currying. Define your own data types, and integrate all these capabilities into a simple web page. Take advantage of ReasonML's functional data structures with map and reduce functions. Discover new ways to write algorithms with ReasonML's recursion support. Interoperate with existing JavaScript libraries with bindings, and write reactive web applications using ReasonML in tandem with React. Reinforce concepts with examples that range from short, tightly focused functions to complete programs, and practice your new skills with exercises in each chapter.With ReasonML, harness the awesome power of a functional language while retaining the best features of JavaScript to produce concise, fast, type-safe programs.What You Need:You'll need to have node.js (version 10.0 or above) and npm (version 5.6 or above). Once you install the bs-platform package and fire up a text editor, you're ready to go. (There are plugins for many popular editors that will make editing easier.)

Web Development with the Mac

by Aaron Vegh

Everything you need to know to create Web sites using your Mac Create and deploy striking Web sites and apps on a Mac for your own business or for clients using the essential techniques in this focused guide. While most Web site how-tos are geared toward either designers or programmers, this detailed book covers both aspects, helping you develop the complete skill sets that you'll need professionally. Tap all of the out-of-the-box perks that Apple has to offer for Web development with these techniques and insights from a seasoned Mac Web developer. Takes you through everything that Macs have to offer for Web development, such as a Web server, PHP, and Ruby on Rails; Macs come with these right out of the box, making setting up a Web development environment pushbutton-easy Reveals the science and the artistry behind creating beautiful and intuitive Web pages using Apple technology Covers the technical elements of Web page construction with HTML, CSS, Javascript, PHP, and Rails; then goes beyond to show you how to add creative flair using Photoshop Turn your design and development skills into marketable assets with this essential guide for Apple users. Note: CD-ROM/DVD and other supplementary materials are not included as part of eBook file.

Web Dynpro ABAP for Practitioners

by Ulrich Gellert Ana Daniela Cristea

Web Dynpro ABAP, a NetWeaver web application user interface tool of SAP enables web programming connected to SAP Systems. The main focus of the authors was to create a book based on practical experience. Each chapter includes examples which lead through the content step-by-step and enable the reader to gradually emerge in the topic of the Web Dynpro ABAP process. The authors explain in particular how to design a Web Dynpro component, the data binding and inteface methods, and the view controller methods. They also describe the other SAP NetWeaver Elements (ABAP Dictionary, Authorization) and the integration of the Web Dynpro Application into the SAP NetWeaver Portal.

Web Engineering

by Alessandro Bozzon Philippe Cudre-Maroux Cesare Pautasso

This book constitutes the refereed proceedings of the 16th International Conference on Web Engineering, ICWE 2016, held in Lugano, Switzerland, in June 2016. The 19 full research papers, 13 short papers, 3 vision papers, 11 demonstrations, 5 posters, 6 PhD Symposium and 4 tutorials presented were carefully reviewed and selected from 120 submissions. The 16th edition of ICWE accepted contributions related to different research areas revolving around Web engineering, including: Web application modelling and engineering, Human computation and crowdsourcing, Web applications composition and mashups, SocialWeb applications, SemanticWeb, and, for the first time, also the Web of Things.

Web Engineering: 21st International Conference, ICWE 2021, Biarritz, France, May 18–21, 2021, Proceedings (Lecture Notes in Computer Science #12706)

by Richard Chbeir Marco Brambilla Flavius Frasincar Ioana Manolescu

This book constitutes the proceedings of the 21st International Conference on Web Engineering, ICWE 2021, which was supposed to be held in Biarritz, France, in May 2021. Due to the corona pandemic the conference changed to a virtual format.The total of 22 full and 13 short contributions presented in this volume were carefully reviewed and selected from 128 submissions. The book also contains 6 demonstration, 1 poster, 3 PhD, and 3 tutorial papers. The papers were organized in topical sections named: Semantic Web; social Web; Web modeling and engineering; Web big data and data analytics; Web mining and knowledge extraction; Web of Things; Web programming; Web user interfaces; PhD symposium; posters and demonstrations; and tutorials.

Web Engineering: 19th International Conference, ICWE 2019, Daejeon, South Korea, June 11–14, 2019, Proceedings (Lecture Notes in Computer Science #11496)

by Flavius Frasincar Maxim Bakaev In-Young Ko

This book constitutes the refereed proceedings of the 19th International Conference on Web Engineering, ICWE 2019, held in Daejeon, South Korea, in June 2019. The 26 full research papers and 9 short papers presented were carefully reviewed and selected from 106 submissions. Additionally, two demonstrations, four posters, and four contributions to the PhD symposium as well as five tutorials are included in this volume. The papers cover research areas such as Web mining and knowledge extraction, Web big data and Web data analytics, social Web applications and crowdsourcing, Web user interfaces, Web security and privacy, Web programming, Web services and computing, Semantic Web and linked open data applications, and Web application modeling and engineering.

Web Engineering: 23rd International Conference, ICWE 2023, Alicante, Spain, June 6–9, 2023, Proceedings (Lecture Notes in Computer Science #13893)

by Irene Garrigós Juan Manuel Murillo Rodríguez Manuel Wimmer

This book constitutes the refereed proceedings of the 23rd International Conference on Web Engineering, ICWE 2023, held in Alicante, Spain, during June 6-9, 2023. The 18 revised full papers and 7 short papers presented in this book were carefully reviewed and selected from 77 submissions. They are organized in topical sections named: architecting the web in the cloud continuum; machine learning for web engineering; IoT and WoT engineering; user privacy engineering; user behaviour characterization; user centered technologies; tools and techniques for advanced web engineering; and web engineering practices and experiences.

Web Engineering: 18th International Conference, Icwe 2018, Cáceres, Spain, June 5-8, 2018, Proceedings (Theoretical Computer Science and General Issues #10845)

by Juan Hernández Ralf Klamma Tommi Mikkonen

This book constitutes the refereed proceedings of the 18th International Conference on Web Engineering, ICWE 2018, held in Cáceres, Spain, in June 2018.The 18 full research papers and 17 short papers presented together with 2 practice papers, 6 demonstration papers, and 5 tutorials were carefully reviewed and selected from 103 submissions. The papers cover research areas such as Web application modeling and engineering; Web infrastructures and architectures; execution models; human computation and crowdsourcing applications; Web application composition and mashups; Social Web applications; Semantic Web applications; Web of Things applications; big data and data analytics; and security, privacy, and identity.

Web Engineering: 22nd International Conference, ICWE 2022, Bari, Italy, July 5–8, 2022, Proceedings (Lecture Notes in Computer Science #13362)

by Tommaso Di Noia In-Young Ko Markus Schedl Carmelo Ardito

This book constitutes the thoroughly refereed proceedings of the 22nd International Conference on Web Engineering, ICWE 2022, held in Bari, Italy, in July 2022. The 23 revised full papers and 5 short papers presented were carefully reviewed and selected from 81 submissions. The books also contains 6 demonstration and poster papers, 7 symposium and 5 tutorial papers. They are organized in topical sections named: recommender systems based on web technology; social web applications; web applications modelling and engineering; web big data and web data analytics; web mining and knowledge extraction; web security and privacy; web user interfaces.

Web Engineering: 20th International Conference, ICWE 2020, Helsinki, Finland, June 9–12, 2020, Proceedings (Lecture Notes in Computer Science #12128)

by Cesare Pautasso Tommi Mikkonen Maria Bielikova

This book constitutes the proceedings of the 20th International Conference on Web Engineering, ICWE 2020, which was planned to take place in Helsinki, Finland, during June 9-12, 2020. Due to the corona pandemic the conference changed to a virtual format. The total of 24 full and 10 short contributions presented in this volume were carefully reviewed and selected from 78 submissions. The book also contains 4 PhD and 7 demo papers. The papers were organized in topical sections named: User interface technologies; performance of Web technologies; machine learning; testing of Web applications; emotion detection; location-aware applications; sentiment analysis; open data; liquid Web applications; Web-based learning; PhD symposium; demos and posters.

A Web for Everyone

by Sarah Horton Whitney Quesenbery

If you are in charge of the user experience, development, or strategy for a web site, A Web for Everyone will help you make your site accessible without sacrificing design or innovation. Rooted in universal design principles, this book provides solutions: practical advice and examples of how to create sites that everyone can use.

Refine Search

Showing 53,001 through 53,025 of 54,344 results