Menu
Your Cart

TP-Link Deco E4 Single Pack Mesh Router

TP-Link Deco E4 Single Pack Mesh Router
TP-Link Deco E4 Single Pack Mesh Router
  • Price: TK 2,450/-
  • Stock: In Stock
  • Model: TP-Link Deco E4
TK 2,450/-
Ex Tax: TK 2,450/-

Key Features

    • Model:TP-Link Deco E4
    • Brand:TP-link
    • Deliver Wi-Fi to an area of up to 1500 square feet
    • connect up to 100 devices
    • Speed up to 1167 Mbps
    Specification
    General Feature
    BrandTP-Link
    ModelTP-Link Deco E4
    Data Transfer300 Mbps on 2.4 GHz 867 Mbps on 5 GHz
    Antenna2 internal dual-band antennas per Deco unit
    Frequency2.4 GHz and 5 GHz
    Physical Attributes
    Dimensions7.5 x 3.6 x 3.6 in (190.5 x 90.7 x 90.7 mm)
    Warranty Information
    Warranty01 Year warranty
    Description

    TP-Link Deco E4 (Single Pack) Whole Home Mesh Wi-Fi System AC1200 Dual-band Router

    The TP-Link Deco E4 Whole Home Mesh Wi-Fi System is designed to provide strong, reliable Wi-Fi coverage throughout your home. Ideal for larger spaces, it delivers seamless internet coverage and keeps multiple devices connected without compromising speed.

    Key Features
    Model: TP-Link Deco E4

    Coverage Area: Up to 1500 square feet

    The Deco E4 is engineered to blanket your home in reliable Wi-Fi, ensuring every corner has strong internet coverage.
    Device Support: Connect up to 100 devices

    This system is ideal for modern households, allowing seamless connectivity for smartphones, tablets, smart home devices, and more.
    Dual-Band Frequency: 2.4 GHz and 5 GHz

    Dual-band technology provides flexibility and reliability, offering a balance between speed and range.
    Speed: Up to 1167 Mbps

    The Deco E4 delivers fast internet speeds, perfect for streaming, gaming, and browsing without interruptions.
    With its easy setup, the TP-Link Deco E4 (Single Pack) offers a robust and user-friendly solution to extend and optimize your home Wi-Fi experience. The AC1200 speed, dual-band functionality, and mesh networking capabilities make it an ideal choice for consistent, high-quality internet throughout your home.

    Why Buy from Dear IT Solution

    buy TP-Link Deco E4 (Single Pack) Whole Home Mesh Wi-Fi System AC1200 Dual-band Router at Dear IT Solution and enjoy the best network technology at unbeatable prices.

    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};